.thank-you-content h1 {
    color: var(--white);
    margin-bottom: 2rem;
}

.thank-you-content p {
    color: var(--lighter-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}/* Premium Monochrome Styling */
:root {
    --header-height: 150px;
    --black: #000000;
    --dark-gray: #1A1A1A;
    --medium-gray: #333333;
    --light-gray: #777777;
    --lighter-gray: #E0E0E0;
    --off-white: #F8F8F8;
    --white: #FFFFFF;
    --accent: #B3B3B3;
    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--white);
    line-height: 1.6;
    background-color: var(--black);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--lighter-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    padding: 16px 35px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
}

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

.secondary-cta {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 16px 35px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.secondary-cta:hover {
    background-color: var(--white);
    color: var(--black);
}

.learn-more {
    font-weight: 500;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.learn-more i {
    margin-left: 10px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--lighter-gray);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: var(--lighter-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--white);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--white);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.contact-btn {
    background-color: var(--white);
    color: var(--black) !important;
    padding: 8px 20px;
    border-radius: 0;
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--white) !important;
    border: 1px solid var(--white);
}

.contact-btn:after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section With Slider */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: var(--header-height);
    box-sizing: border-box;
}

.slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-1.jpg');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-2.jpg');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-3.jpg');
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    margin-top: calc(var(--header-height) / 2);
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--lighter-gray);
    margin-bottom: 20px;
    display: block;
    font-size: 1rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 10%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--white);
    width: 50px;
}

/* Services Overview */
.services-overview {
    padding: 150px 0;
    background-color: var(--dark-gray);
    position: relative;
}

.services-overview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pattern.svg');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.services-overview h2 {
    max-width: 700px;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--medium-gray);
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: var(--white);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

.service-card:hover:before {
    width: 100%;
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    max-width: 80%;
}

.service-card p {
    color: var(--lighter-gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Why Rankings Matter */
.why-rankings {
    padding: 150px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.why-rankings:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.rankings-content h2 {
    max-width: 700px;
    margin-bottom: 3rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.stat-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.stat-box:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-box p {
    color: var(--lighter-gray);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Unique Approach */
.unique-approach {
    padding: 150px 0;
    background-color: var(--medium-gray);
    position: relative;
}

.unique-approach:before {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url('approach-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.approach-content {
    max-width: 650px;
}

.approach-content h2 {
    margin-bottom: 1.5rem;
}

.approach-content > p {
    margin-bottom: 3rem;
}

.approach-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

.approach-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.point-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon i {
    color: var(--white);
    font-size: 1.4rem;
}

.point-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.point-text p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    text-align: center;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

/* Contact Page Specific Styles */
.page-header {
    height: 75vh;
    padding-top: 200px;  
    background-color: var(--black);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.page-header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('contact-header.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    margin-bottom: 1rem;
    max-width: 700px;
}

.page-header p {
    max-width: 600px;
    color: var(--lighter-gray);
    font-size: 1.2rem;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--black);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--white), transparent);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 40px;
    color: var(--lighter-gray);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-text p {
    margin-bottom: 0;
    color: var(--lighter-gray);
}

.contact-form {
    background-color: var(--medium-gray);
    padding: 60px;
    position: relative;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--white));
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control.error {
    border-bottom-color: #ff4444 !important;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background-color: transparent;
    color: var(--white);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.privacy-notice {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--light-gray);
}

.success-message {
    text-align: center;
    padding: 50px 0;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message p {
    color: var(--lighter-gray);
    max-width: 500px;
    margin: 0 auto;
}

.form-status {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.form-status.success {
    background: #4CAF50;
    color: white;
}

.form-status.error {
    background: #ff4444;
    color: white;
}

.error-message {
    color: #ff4444 !important;
    font-size: 0.9rem !important;
    margin-top: 5px !important;
}

/* Thank You Page Styles */
.thank-you-hero {
    min-height: 100vh;
    padding: 180px 0 100px 0;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-hero:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.thank-you-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
}

.thank-you-content h1 {
    color: var(--white);
    margin-bottom: 2rem;
}

.thank-you-content p {
    color: var(--lighter-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 40px;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #fff;
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px transparent;
    }
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 100px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    left: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--lighter-gray);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--lighter-gray);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--lighter-gray);
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0); /* Fixed from translateY(-50%) */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    nav ul {
        position: fixed;
        top: var(--header-height); /* Use consistent height */
        right: -100%;
        background-color: var(--black);
        width: 250px;
        height: calc(100vh - var(--header-height));
        flex-direction: column;
        gap: 0;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 30px;
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin-bottom: 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        left: 5%;
        max-width: 90%;
    }
    
    .slider-nav {
        left: 5%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    /* IMPORTANT: Header height variable MUST be first */
    :root {
        --header-height: 120px; /* Smaller header on mobile */
    }
    
    /* Hero section fixes */
    .hero {
        height: calc(100vh - var(--header-height));
        padding-top: var(--header-height);
        box-sizing: border-box;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    /* Contact page fixes */
    .page-header {
        padding-top: 180px; /* Increased for mobile */
        min-height: 500px;
        height: auto;
    }
    
    .page-header h1 {
        margin-top: 20px;
    }
    
    /* Your existing rules */
    .services-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .approach-point {
        flex-direction: column;
    }
    
    .service-card {
        min-height: auto;
    }
    
    .thank-you-hero {
        padding: calc(var(--header-height) + 40px) 0 80px 0;
    }
    
    .thank-you-content {
        padding: 0 15px;
    }
}
