/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0B1F3A;
    --secondary: #FFFFFF;
    --accent: #F4F4F4;
    --highlight: #C9A646;
    --text: #2E2E2E;
    --text-light: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--secondary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(11, 31, 58, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Text Logo */
.fortis-text-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.fortis-text-logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 5px rgba(11, 31, 58, 0.2);
}

/* Remove old logo image styling */
.nav-logo img.logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background: #0a2a4d;
}

/* ALIGN TOP PIXEL = .hero-content {   top: 320px    left: 170px
ALIGN EQUIDISTANT TO BACKGROUND =   top: 350px    left: 170px */

.hero {
    background: 
        linear-gradient(to right, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.7) 70%, transparent 100%),
        url('../images/background.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--secondary);
    padding: 0;
    text-align: left;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: absolute;
    top: 350px;
    left: 170px;
    padding: 0;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: var(--highlight);
    color: var(--primary);
}

.btn-primary:hover {
    background: #d4b452;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    max-width: 600px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto;
}

.professional-headshot {
    width: 600px !important;
    height: 500px !important;
    max-width: 600px !important;
    max-height: 500px !important;
    min-width: 600px !important;
    min-height: 500px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    background: var(--accent);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.1rem;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.credential-icon {
    background: var(--highlight);
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
}

/* Our Process Section */
.process {
    padding: 100px 0;
    background: var(--accent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.process-item {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 0.5rem;
}

.coming-soon {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: var(--accent);
    border-left: 3px solid var(--highlight);
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service {
    padding: 1rem;
    border-left: 3px solid var(--primary);
    background: var(--accent);
}

.service h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: var(--secondary);
}

.program-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stage {
    background: var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stage:hover {
    transform: translateY(-5px);
}

.stage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stage h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stage p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.stage ul {
    list-style: none;
    text-align: left;
}

.stage li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.stage li:before {
    content: "•";
    color: var(--highlight);
    position: absolute;
    left: 0;
}

.investment-section {
    text-align: center;
    background: var(--secondary);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight);
}

.investment-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.investment-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
}

/* Center the main heading */
.contact-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--primary);
}

/* Add space between heading and box */
.contact-info > p {
    text-align: center;
    margin-bottom: 2rem; /* Increased space before box */
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    background: var(--secondary);
    padding: 2.5rem 3rem 2rem; /* Reduced bottom padding: top right bottom */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-details p {
    margin-bottom: 1.2rem; /* Reduced spacing between lines */
    line-height: 1.5; /* Tighter line spacing */
    font-size: 1.1rem;
    color: var(--text);
    text-align: left;
}

.email-link-container {
    margin: 2rem 0 1.5rem; /* Reduced bottom margin */
    padding: 1.5rem; /* Reduced padding */
    background: var(--accent);
    border-radius: 8px;
    border-left: 4px solid var(--highlight);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-link-container p {
    text-align: center;
    margin-bottom: 1rem; /* Reduced margin */
    color: var(--text-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem; /* Slightly smaller text */
}

.email-link {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 0.9rem 1.8rem; /* Slightly smaller padding */
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem; /* Slightly smaller */
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 320px; /* Slightly smaller max width */
    margin: 0.5rem auto;
    border: none;
}

.email-link:hover {
    background: var(--highlight);
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 166, 70, 0.3);
}

.email-icon {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.email-link:hover .email-icon {
    color: var(--primary);
}

/* Circular Logo - Keep original size */
.circular-logo-container {
    display: block;
    text-align: center;
    margin: 1.5rem auto 0; /* Reduced top margin */
}

.circular-logo {
    width: 200px; /* Keep original size */
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.circular-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(201, 166, 70, 0.3));
}

.contact-logo {
    margin-top: 2rem; /* Reduced from 2.5rem */
    padding-top: 2rem; /* Reduced from 2.5rem */
    border-top: 1px solid #eee;
    text-align: center;
}

/* Remove old footer logo styling */
.footer-logo {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-details {
        padding: 2rem 1.5rem 1.5rem; /* Reduced padding on mobile */
    }
    
    .email-link-container {
        padding: 1.25rem; /* Reduced on mobile */
        margin: 1.5rem 0 1.25rem;
    }
    
    .email-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .circular-logo {
        width: 160px;
        height: 160px;
    }
    
    .contact-logo {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Remove old footer logo styling */
.footer-logo {
    display: none;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 2rem 0;
    text-align: center;
}

/* Image hover effects */
.professional-headshot {
    transition: transform 0.3s ease;
}

.professional-headshot:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .fortis-text-logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 0;
        background-attachment: scroll;
        min-height: 100vh;
        background: 
            linear-gradient(to bottom, rgba(11, 31, 58, 0.9), rgba(11, 31, 58, 0.8)),
            url('../images/background.png') center center no-repeat;
        background-size: cover;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
        width: 100%;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-image {
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }

    .professional-headshot {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: none !important;
        min-width: 100% !important;
        min-height: 300px !important;
        aspect-ratio: 6/5;
        object-fit: cover;
    }
    
    .about-grid,
    .program-stages,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .process {
        padding: 60px 0;
    }
    
    .offer {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .process-item {
        padding: 1.5rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-details p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .email-link-container {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .email-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Mobile circular logo styling */
    .circular-logo-container {
        width: 160px;
        height: 160px;
    }
    
    .circular-logo {
        width: 140px;
        height: 140px;
    }
    
    .contact-logo {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-details p {
        text-align: left;
    }
    
    /* Adjust section titles for mobile */
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Adjust program stages for mobile */
    .stage {
        padding: 1.5rem;
    }
    
    .stage-number {
        font-size: 2.5rem;
    }
    
    .stage h3 {
        font-size: 1.3rem;
    }
    
    /* Adjust about section heading */
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .credential-item {
        font-size: 1rem;
    }
    
    /* Adjust process items */
    .process-item h3 {
        font-size: 1.5rem;
    }
    
    .service h4 {
        font-size: 1.1rem;
    }
    
    /* Adjust investment section */
    .investment-section {
        padding: 2rem 1.5rem;
    }
    
    .investment-section h3 {
        font-size: 1.5rem;
    }
    
    .investment-section p {
        font-size: 1rem;
    }
    
    /* Improve contact heading */
    .contact-info h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .contact-info > p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .fortis-text-logo {
        font-size: 1.6rem;
    }
    
    .hero-content {
        top: 300px;
        left: 100px;
    }
    
    .circular-logo-container {
        width: 180px;
        height: 180px;
    }
}