:root {
    --dark-gray: #2D2D2D;
    --navy-blue: #0A1F3A;
    --gold: #D4AF37;
    --white: #ffffff;
    --heading-font: 'Cormorant', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background-color: var(--navy-blue);
    color: var(--white);
    line-height: 1.6;
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: var(--heading-font);
}

h1, .blog-header h1 { font-size: 2.2rem; font-weight: 700; color: #D4AF37; }
h2, .blog-header h2, .blog-card h2 { font-size: 1.6rem; font-weight: 600; color: #FFD700; }
h3, .blog-header h3, .blog-card h3 { font-size: 1.25rem; font-weight: 500; color: #FFD700; }
body, p, .blog-meta, .blog-excerpt, .blog-content, .faq-list, .faq-answer { font-size: 1.08rem; color: #fff; }
.blog-meta { color: #D4AF37; font-weight: 500; }
.blog-excerpt { font-weight: 600; }

/* FAQ interactive styles */
.faq-list .faq-item { cursor:pointer; border-bottom:1px solid #23304a; padding:1rem 0; }
.faq-answer { display:none; color:#fff; font-size:1.08rem; margin-top:0.5rem; transition:all 0.3s; }
.faq-item.active .faq-answer { display:block; }
.faq-question {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    padding: 1rem 0.5rem;
    transition: background 0.2s;
    line-height: 1.4;
}
.faq-item.active .faq-question {
    color: #fff;
}
.faq-answer {
    font-size: 1.13rem;
    color: var(--white);
    padding: 0.75rem 1.5rem 1.25rem 1.5rem;
    line-height: 1.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--navy-blue) !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-bottom: 5rem;
}

.hero::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem;
    margin-top: 2vh; /* Reduced from 4vh to move content higher */
    width: 100%;
    max-width: 1200px;
}

/* Company Logo Section */
.company-logo {
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: -1rem; /* Added negative margin to move it closer to phone number */
}

.company-logo .company-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.company-logo .company-subtitle {
    font-size: var(--text-base);
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    font-family: var(--heading-font);
}

.company-logo .year-indicator {
    font-size: var(--text-xs);
    color: var(--gold);
    opacity: 0.9;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.2rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Phone Display */
.phone-number-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    color: var(--gold);
    font-size: 1.2em;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    order: 4;
    margin-top: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 400px;
}

.trust-icon {
    font-size: var(--text-xl);
    color: var(--gold);
    flex-shrink: 0;
    width: 24px;
    display: flex;
    justify-content: center;
}

.trust-text {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: left;
    flex: 1;
}

/* Hero Tagline Section */
.hero-tagline {
    position: relative;
    padding: 2rem 0;
    margin: 1rem 0;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--gold);
}

.hero-tagline::before {
    top: 0;
}

.hero-tagline::after {
    bottom: 0;
}

.hero-headline {
    font-size: calc(var(--text-4xl) * 1.2);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 2rem; /* Increased from 1.5rem to add more space between h1 and h2 */
    font-family: var(--heading-font);
}

.hero-subheadline {
    font-size: var(--text-xl);
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-family: var(--body-font);
    letter-spacing: 0.3px;
}

/* Reorder and adjust spacing for CTA and trust indicators */
.hero-buttons {
    order: 3;
    margin: 0.5rem auto 2rem; /* Adjusted margins */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 1.5vh; /* Reduced from 3vh */
        gap: 1.5rem;
    }

    .trust-indicators {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .trust-item {
        padding: 0.6rem 1rem;
        max-width: 100%;
    }

    .trust-icon {
        font-size: var(--text-lg);
        width: 24px;
    }

    .trust-text {
        font-size: var(--text-xs);
        letter-spacing: 0.3px;
    }

    .hero-headline {
        margin-bottom: 1.5rem; /* Adjusted for mobile */
    }

    .hero-subheadline {
        font-size: var(--text-lg);
        line-height: 1.5;
        letter-spacing: 0.2px;
    }

    .hero-tagline {
        padding: 1.5rem 0;
        margin: 0.75rem 0;
    }

    .hero-tagline::before,
    .hero-tagline::after {
        width: 80%;
    }

    .hero-buttons {
        margin: 0.5rem auto 1.5rem;
    }

    .company-logo {
        margin-top: -0.5rem; /* Adjusted for mobile */
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 1vh;
        gap: 1rem;
    }

    .company-logo {
        margin-top: -0.25rem;
    }

    .hero-headline {
        margin-bottom: 1.25rem;
    }

    .hero-subheadline {
        font-size: var(--text-base);
        line-height: 1.4;
        letter-spacing: 0.1px;
    }

    .hero-tagline {
        padding: 1.5rem 0;
        margin: 1rem 0;
    }
}

/* CTA Wrapper and Buttons */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 5rem; /* Increased margin to move it up more */
}

.cta-text {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: calc(var(--text-xl) * 1.3);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background-color: var(--gold);
    color: var(--navy-blue);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    min-width: 220px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: calc(var(--text-3xl) * 1.2);
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }
    
    .cta-wrapper {
        margin-bottom: 4rem;
    }

    .cta-text {
        font-size: calc(var(--text-lg) * 1.2);
        margin-bottom: 1rem;
        letter-spacing: 0.8px;
    }

    .contact-button {
        padding: 0.875rem 2rem;
        font-size: var(--text-sm);
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: calc(var(--text-2xl) * 1.2);
        letter-spacing: 1.5px;
    }
    
    .cta-wrapper {
        margin-bottom: 3.5rem;
    }

    .cta-text {
        font-size: calc(var(--text-lg) * 1.1);
        margin-bottom: 0.8rem;
        letter-spacing: 0.6px;
    }

    .contact-button {
        padding: 0.75rem 1.75rem;
        font-size: var(--text-sm);
        min-width: 180px;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    top: 100px;
    left: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.cta-button.floating {
    margin: 0;
    padding: 1rem 2rem;
    font-size: var(--text-sm);
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.cta-button.floating:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .floating-cta {
        left: 1rem;
        right: 1rem;
        text-align: center;
    }
    
    .cta-button.floating {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-tagline {
        padding: 1.5rem 0;
        margin: 0.75rem 0 1.5rem;
    }
    
    .hero-tagline::before,
    .hero-tagline::after {
        height: 1.5px;
    }
    
    .hero-subtitle {
        font-size: var(--text-2xl);
        margin: 0 0 0.75rem;
    }

    .hero-subtext {
        font-size: var(--text-xl);
        letter-spacing: 1px;
        margin: 0.75rem 0 0;
    }

    .establishment-year {
        font-size: var(--text-sm);
        padding: 0.2rem 0.8rem;
    }

    .hero {
        padding-top: 12vh;
    }

    .company-name h1 {
        font-size: calc(var(--text-4xl) * 1.1);
    }
    
    .company-subtitle {
        font-size: calc(var(--text-xl) * 1.1);
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 2rem;
        margin-top: 10vh;
    }

    .hero-tagline {
        padding: 1rem 0;
        margin: 0.5rem 0 1rem;
    }

    .hero-subtitle {
        font-size: var(--text-xl);
        margin: 0 0 0.5rem;
    }

    .hero-subtext {
        font-size: var(--text-lg);
        letter-spacing: 0.75px;
        margin: 0.5rem 0 0;
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: var(--navy-blue);
}

.services h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.service-card {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--gold);
    font-size: var(--text-xl);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--white);
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background-color: var(--navy-blue);
    text-align: center;
}

.process h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: var(--text-2xl);
    font-family: var(--heading-font);
    font-weight: 600;
}

.step h3 {
    color: var(--white);
    font-size: var(--text-xl);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--white);
    font-size: var(--text-base);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--navy-blue);
    margin: 2vh auto;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    color: var(--gold);
    margin: 0 0 15px 0;
    font-size: var(--text-2xl);
    font-family: var(--heading-font);
    font-weight: 600;
}

.form-description {
    color: var(--white);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    opacity: 0.9;
    padding: 1rem;
    background: rgba(10, 31, 58, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gold);
    background-color: var(--dark-gray);
    color: var(--white);
    border-radius: 5px;
    font-size: var(--text-base);
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #E5C14C;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: var(--text-xl);
    color: var(--gold);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #E5C14C;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-description {
        font-size: var(--text-sm);
        padding: 0.8rem;
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: var(--text-sm);
    }
    
    .form-group input,
    .form-group select {
        font-size: var(--text-sm);
        padding: 8px 10px;
    }
}

/* Social Proof */
.social-proof {
    padding: 6rem 2rem;
    background-color: var(--navy-blue);
    text-align: center;
}

.social-proof h2 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    width: 100%;
    display: block;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonial-card {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.client-initial {
    font-family: var(--heading-font);
    font-size: var(--text-2xl);
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.client-type {
    font-size: var(--text-sm);
    color: var(--gold);
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 2rem;
    text-align: center;
}

.legal-disclaimer {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Legal Notice Section */
.legal-notice {
    background-color: var(--navy-blue);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.legal-notice .container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-notice .legal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.legal-notice h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.legal-notice .legal-content {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

.legal-notice p {
    line-height: 2;
    color: var(--white);
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
    font-size: var(--text-base);
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-tagline h3 {
        font-size: var(--text-base);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-xs);
    }
    
    .hero-content {
        gap: 2.5rem;
        margin-top: 12vh;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 2rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .legal-notice {
        padding: 3rem 1rem;
    }
    
    .legal-notice h2 {
        font-size: var(--text-2xl);
    }
    
    .legal-notice .legal-content {
        padding: 1.5rem;
    }
    
    .exclusivity {
        padding: 4rem 1rem;
    }
    
    .exclusivity h2 {
        font-size: var(--text-2xl);
    }
    
    .exclusivity-content {
        padding: 2rem;
    }
    
    .exclusivity p {
        font-size: var(--text-base);
        line-height: 2;
    }

    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .step {
        max-width: 100%;
    }

    .step-description {
        max-width: 500px;
        font-size: var(--text-sm);
    }

    .exclusivity,
    .process,
    .social-proof,
    .services {
        padding: 4rem 1rem;
    }
}

/* Language Display */
.en {
    display: none;
}

body[data-lang="en"] .en {
    display: inline-block;
}

body[data-lang="en"] .tr {
    display: none;
}

body[data-lang="tr"] .tr {
    display: inline-block;
}

body[data-lang="tr"] .en {
    display: none;
}

.form-response {
    margin-top: 1rem;
    text-align: center;
    min-height: 1.5rem;
    font-weight: 500;
}

/* Exclusivity Section */
.exclusivity {
    padding: 6rem 2rem;
    background-color: rgba(45, 45, 45, 0.3);
    text-align: center;
    position: relative;
}

.exclusivity .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid var(--gold);
    border-radius: 10px;
    background-color: rgba(10, 31, 58, 0.6);
    backdrop-filter: blur(10px);
}

.exclusivity-icon {
    font-size: var(--text-3xl);
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.exclusivity h2 {
    color: var(--gold);
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.exclusivity-content {
    max-width: 600px;
    margin: 0 auto;
}

.exclusivity-content p {
    font-size: var(--text-lg);
    line-height: 2;
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
}

.exclusivity-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.exclusivity-content li {
    font-size: var(--text-lg);
    color: var(--white);
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.exclusivity-content li:last-child {
    border-bottom: none;
}

.exclusivity-content li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0.5rem;
    font-size: 1.5em;
    line-height: 1;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .exclusivity {
        padding: 4rem 1.5rem;
    }

    .exclusivity .container {
        padding: 2rem 1.5rem;
    }

    .exclusivity h2 {
        font-size: var(--text-2xl);
        margin-bottom: 1.5rem;
    }

    .exclusivity-content p,
    .exclusivity-content li {
        font-size: var(--text-base);
    }

    .exclusivity-content li {
        padding: 0.75rem 0 0.75rem 1.75rem;
    }

    .exclusivity-content li::before {
        left: 0.25rem;
    }
}

/* Base Mobile Optimization */
@media (max-width: 480px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
    }

    .hero-content {
        margin-top: 10vh;
        gap: 2rem;
        padding: 1.5rem;
    }

    .company-name h1 {
        font-size: calc(var(--text-3xl) * 1.2);
    }

    .hero-subtitle {
        font-size: var(--text-2xl);
        letter-spacing: 1.5px;
    }

    /* Optimize touch targets */
    .contact-button,
    .nav-link,
    .option-button,
    select,
    input,
    button {
        min-height: 44px;
        padding: 0.75rem 1rem;
        touch-action: manipulation;
    }

    /* Adjust spacing for better mobile layout */
    .services,
    .process,
    .social-proof,
    .exclusivity,
    .legal-notice,
    .contact {
        padding: 3rem 1rem;
    }

    .contact-modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }

    /* Improve text rendering performance */
    .testimonial-text,
    .service-card p,
    .process-steps p {
        text-rendering: optimizeSpeed;
    }

    /* Reduce animation complexity */
    .contact-button::before,
    .option-button::before {
        display: none;
    }

    /* Optimize images */
    .contact-icon {
        width: 20px;
        height: 20px;
        will-change: transform;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .floating-header {
        padding: 0.5rem;
        grid-template-columns: auto auto;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--navy-blue);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: var(--text-lg);
        padding: 1rem;
    }

    /* Improve form elements for touch */
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px;
        margin-bottom: 1rem;
    }

    /* Better spacing for mobile sections */
    .section {
        margin: 2rem 0;
    }

    .container {
        padding: 1rem;
    }

    /* Improve card layouts */
    .testimonial-card,
    .service-card {
        margin-bottom: 1rem;
        transform: none !important;
    }

    /* Optimize scrolling performance */
    .testimonials-grid,
    .services-grid {
        will-change: transform;
        backface-visibility: hidden;
    }
}

/* Tablet Optimization */
@media (min-width: 481px) and (max-width: 768px) {
    :root {
        --text-5xl: 2.75rem;
        --text-4xl: 2.125rem;
        --text-3xl: 1.8rem;
        --text-2xl: 1.375rem;
    }
}

/* Performance Optimizations */
.hero,
.floating-header,
.contact-modal {
    will-change: transform;
    backface-visibility: hidden;
}

.contact-button,
.option-button {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce repaints */
.trust-indicators,
.testimonials-grid,
.services-grid {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Floating Header */
.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 31, 58, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.floating-header.visible {
    transform: translateY(0);
}

.floating-brand {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: var(--text-lg);
    font-weight: 600;
    white-space: nowrap;
}

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .floating-header {
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        display: none;
    }

    .floating-brand {
        font-size: var(--text-base);
    }

    .contact-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .floating-header {
        padding: 0.5rem 0.75rem;
    }

    .floating-brand {
        font-size: var(--text-sm);
    }

    .contact-button {
        padding: 0.3rem 0.5rem;
        font-size: var(--text-xs);
    }

    .contact-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .floating-header {
        padding: 0.4rem 0.5rem;
    }

    .floating-brand {
        font-size: 12px;
    }

    .contact-button {
        padding: 0.25rem 0.35rem;
        font-size: 10px;
    }

    .contact-icon {
        width: 12px;
        height: 12px;
    }
}

.submit-button {
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 3px;
    width: 100%;
    cursor: pointer;
    font-size: var(--text-base);
    font-family: var(--body-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background-color: #E5C14C;
    border-color: #E5C14C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .submit-button {
        padding: 0.8rem 2rem;
        font-size: var(--text-sm);
    }
}

.form-description {
    color: var(--white);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 1rem 0 2rem;
    text-align: left;
    opacity: 0.9;
    padding: 1rem;
    background: rgba(10, 31, 58, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .form-description {
        font-size: var(--text-xs);
        padding: 0.8rem;
        margin: 0.8rem 0 1.5rem;
    }
}

/* Language Display for Select Options */
body[data-lang="en"] option.tr {
    display: none;
}

body[data-lang="tr"] option.en {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    animation: fadeInOut 2s ease-in-out infinite;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.scroll-arrow {
    width: 8px;
    height: 8px;
    border: solid var(--gold);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
    margin-top: -4px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-3px) rotate(45deg);
    }
    60% {
        transform: translateY(-1.5px) rotate(45deg);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 3rem;
        width: 28px;
        height: 28px;
    }
    
    .scroll-arrow {
        width: 7px;
        height: 7px;
        margin-top: -3.5px;
        border-width: 0 1px 1px 0;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 2.5rem;
    }
}

.contact {
    padding: 4rem 2rem;
    background-color: rgba(10, 31, 58, 0.95);
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 4rem;
    width: 100%;
    min-height: 300px;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    backdrop-filter: none;
}

.contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact .contact-icon {
    font-size: var(--text-2xl);
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact h2 {
    color: var(--gold);
    font-size: var(--text-2xl);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.contact-separator {
    width: 1px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.2);
}

.contact-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    color: var(--gold);
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--white);
    font-size: var(--text-base);
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    margin: 0;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.contact-item a:hover {
    color: var(--gold);
    opacity: 1;
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
        min-height: auto;
    }

    .contact .contact-icon {
        font-size: var(--text-xl);
        margin-bottom: 0.75rem;
    }

    .contact h2 {
        font-size: var(--text-xl);
        margin-bottom: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }

    .contact-separator {
        width: 60px;
        height: 1px;
        margin: 0;
    }

    .contact-item {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .contact-item h3 {
        font-size: var(--text-base);
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        text-align: center;
    }
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.floating-header .phone-number-display {
    font-size: var(--text-sm);
    padding: 0.4rem 0.8rem;
    background-color: transparent !important;
}

.top-phone-display {
    position: absolute;
    top: 1.5rem; /* Reduced from 2rem */
    left: 2rem;
    z-index: 100;
}

.top-phone-display .phone-number-display {
    background-color: transparent !important;
}

@media (max-width: 768px) {
    .phone-number-display {
        font-size: var(--text-sm);
        padding: 0.4rem 0.8rem;
    }
    
    .floating-header .phone-number-display {
        font-size: var(--text-xs);
        padding: 0.3rem 0.6rem;
    }
    
    .contact-buttons {
        gap: 0.5rem;
    }
    
    .top-phone-display {
        top: 1rem;
        left: 1rem;
    }
}

.cta-text {
    color: var(--gold);
    font-family: var(--heading-font);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .cta-text {
        font-size: var(--text-base);
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cta-text {
        font-size: var(--text-sm);
        margin-bottom: 0.4rem;
    }
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

/* Update floating header styles */
.floating-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

/* Base Styles */
html {
    background-color: var(--navy-blue) !important;
    visibility: visible !important;
}

html, body {
    min-height: 100vh;
    visibility: visible !important;
}

body {
    opacity: 1 !important;
    background-color: var(--navy-blue) !important;
    visibility: visible !important;
}

/* Remove FOUC prevention that might hide content */
.hero,
.hero-content,
.company-name,
.hero-tagline,
.trust-indicators,
.services,
.process,
.social-proof,
.exclusivity,
.legal-notice,
.contact {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Tablet and Mobile Base Improvements */
@media (max-width: 1024px) {
    :root {
        --text-5xl: 2.75rem;
        --text-4xl: 2.125rem;
        --text-3xl: 1.8rem;
        --text-2xl: 1.375rem;
    }

    .hero-content {
        margin-top: 12vh;
        gap: 2.5rem;
    }

    .company-name h1 {
        font-size: calc(var(--text-4xl) * 1.2);
    }

    .hero-subtitle {
        font-size: calc(var(--text-3xl) * 1.1);
        letter-spacing: 2px;
    }
}

/* Mobile Specific Improvements */
@media (max-width: 480px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
    }

    .hero-content {
        margin-top: 10vh;
        gap: 2rem;
        padding: 1.5rem;
    }

    .company-name h1 {
        font-size: calc(var(--text-3xl) * 1.2);
    }

    .hero-subtitle {
        font-size: var(--text-2xl);
        letter-spacing: 1.5px;
    }

    /* Improve touch targets */
    .contact-button,
    .nav-link,
    .option-button,
    select,
    input,
    button {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }

    /* Adjust spacing for better mobile layout */
    .services,
    .process,
    .social-proof,
    .exclusivity,
    .legal-notice,
    .contact {
        padding: 3rem 1rem;
    }

    .contact-modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .floating-header {
        padding: 0.5rem;
        grid-template-columns: auto auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--navy-blue);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: var(--text-lg);
        padding: 1rem;
    }

    /* Improve form elements for touch */
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px;
        margin-bottom: 1rem;
    }

    /* Better spacing for mobile sections */
    .section {
        margin: 2rem 0;
    }

    .container {
        padding: 1rem;
    }

    /* Improve card layouts */
    .testimonial-card,
    .service-card {
        margin-bottom: 1rem;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 4rem 2rem;
    background: #0A1F3A;
}

.blog-section h2 {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.blog-section .section-description {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    /* background: #fff; */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* .blog-card h3 {
    font-size: 1.5rem;
    color: #0A1F3A;
    margin-bottom: 1rem;
} */

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #D4AF37;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-excerpt {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 700;
    font-size: 1.18rem;
    line-height: 1.8;
}

.read-more {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b38f2e;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 2rem 1rem;
    }

    .blog-section h2 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Centering and Mobile Usability */
.faq-section {
    text-align: center;
    padding: 4rem 1rem;
}
.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}
.faq-list {
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #23304a;
    padding: 1.2rem 0;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    padding: 1rem 0.5rem;
    transition: background 0.2s;
    line-height: 1.4;
}
.faq-item.active .faq-question {
    color: #fff;
}
.faq-answer {
    font-size: 1.13rem;
    color: var(--white);
    padding: 0.75rem 1.5rem 1.25rem 1.5rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    display: block;
}
@media (max-width: 600px) {
    .faq-section {
        padding: 2rem 0.5rem;
    }
    .faq-section .container {
        padding: 0 0.2rem;
    }
    .faq-question {
        font-size: 1.1rem;
        padding: 0.75rem 0.5rem;
    }
    .faq-answer {
        font-size: 1rem;
        padding: 0.5rem 1rem 1rem 1rem;
    }
    .faq-item {
        padding: 0.9rem 0;
    }
} 