:root {
    --navy-blue: #1B365D;
    --light-blue: #7CC5D9;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--navy-blue);
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Match logo height */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.header-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--light-blue);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 54, 93, 0.2);
}

/* Process Steps Styles */
.process-steps {
    padding: 140px 0 80px;
    background-color: var(--white);
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

.step-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2a4a7c 100%);
    margin-bottom: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.1);
}

.step-box i {
    font-size: 2.5em;
    color: var(--white);
}

.step-item h3 {
    font-weight: 500;
    letter-spacing: -0.5px;
    font-size: 1.1em;
}

/* Services Section Styles */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2a4a7c 100%);
    color: var(--white);
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 2em;
    letter-spacing: -0.5px;
    color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 450px));
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.2s ease-out; /* Faster transition */
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.8em;
    letter-spacing: -0.5px;
    color: var(--white);
}

.price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    color: var(--white);
}

.service-list li:before {
    content: "→";
    color: var(--light-blue);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Optional: Add a subtle gradient overlay to create depth */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(124, 197, 217, 0.1), transparent);
    pointer-events: none;
}

/* Team Section Styles */
.team {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.team .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 2em;
    letter-spacing: -0.5px;
    color: var(--navy-blue);
}

/* Add a subtle line decoration under the title */
.team .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--light-blue);
    margin: 15px auto 0;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    width: 280px;
    height: 350px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(27, 54, 93, 0.1);
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.team-member h3 {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--navy-blue);
}

.team-member h3 + p {
    margin-top: -6px;
}

.team-member p {
    margin-top: 0;
    color: var(--light-blue);
    font-weight: 500;
}

.team-member p + p {
    margin-top: -6px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .image-container {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: minmax(280px, 450px);
        padding: 0 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        width: 280px;
        height: 350px;
    }

    .header-container {
        height: 60px; /* Smaller height on mobile */
    }

    .logo {
        height: 60px; /* Smaller logo on mobile */
    }

    .header-cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Update Hero Section Styles */
.hero {
    min-height: 85vh;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 100px;
    position: relative;
    overflow: hidden;
}

.shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: var(--navy-blue);
}

.shape {
    display: none;
}

/* Update shape positions and sizes */
.shape1 {
    width: 180px;
    height: 180px;
    top: 12%;
    left: 8%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 25%;
    right: 18%;
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
}

.shape3 {
    width: 160px;
    height: 160px;
    top: 45%;
    left: 22%;
    border-radius: 41% 59% 40% 60% / 65% 66% 34% 35%;
}

.shape4 {
    width: 190px;
    height: 190px;
    top: 65%;
    right: 25%;
    border-radius: 59% 41% 40% 60% / 42% 51% 49% 58%;
}

.shape5 {
    width: 170px;
    height: 170px;
    bottom: 18%;
    left: 35%;
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
}

.shape6 {
    width: 220px;
    height: 220px;
    bottom: 28%;
    right: 12%;
    border-radius: 34% 66% 50% 50% / 43% 56% 44% 57%;
}

.shape7 {
    width: 150px;
    height: 150px;
    top: 8%;
    left: 42%;
    border-radius: 45% 55% 62% 38% / 53% 51% 49% 47%;
}

.shape8 {
    width: 180px;
    height: 180px;
    top: 35%;
    left: 65%;
    border-radius: 53% 47% 59% 41% / 61% 39% 61% 39%;
}

.shape9 {
    width: 200px;
    height: 200px;
    bottom: 22%;
    left: 58%;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

.shape10 {
    width: 170px;
    height: 170px;
    top: 52%;
    right: 38%;
    border-radius: 49% 51% 48% 52% / 57% 43% 57% 43%;
}

/* Remove old shape styles */
.shape11, .shape12, .shape13, .shape14, .shape15 {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    color: var(--white);
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: var(--light-blue);
    font-size: 1.4em;
    margin-bottom: 50px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 0 0 25px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
}

.feature i {
    color: var(--light-blue);
    font-size: 2.5em;
    margin-bottom: 12px;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.feature span {
    color: var(--white);
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Update CTA button styles */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--light-blue);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Update Testimonials Section Styles */
.testimonials {
    padding: 100px 0;
    background: var(--navy-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: var(--white);
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card .quote {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white);
}

.author h3 {
    color: var(--light-blue);
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.author p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Update/Add Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header mobile styles */
    .header {
        padding: 8px 0;
    }

    .header-container {
        height: 50px;
        padding: 0 15px;
    }

    .logo {
        height: 45px;
    }

    .header-cta-button {
        padding: 8px 15px;
        font-size: 0.85em;
    }

    /* Hero section mobile styles */
    .hero {
        min-height: auto;
        padding: 80px 15px 50px;
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin: 0 0 20px;
    }

    .feature {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
    }

    .feature i {
        font-size: 1.5em;
        margin-bottom: 6px;
    }

    .feature span {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    /* Process steps mobile styles */
    .process-steps {
        padding: 50px 0;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 10px;
        max-width: 350px;
        margin: 0 auto;
        padding: 0 5px;
    }

    .step-item {
        margin-bottom: 0;
    }

    .step-box {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .step-box i {
        font-size: 1.3em;
    }

    .step-item h3 {
        font-size: 1em;
    }

    /* Services section mobile styles */
    .services {
        padding: 50px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .service-box {
        padding: 25px;
    }

    .service-box h3 {
        font-size: 1.4em;
    }

    .price {
        font-size: 1.8em;
    }

    .service-list li {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    /* Calculator mobile styles */
    .calculator-section {
        padding: 25px 15px;
        margin-top: 40px;
    }

    .calculator-container {
        margin: 20px auto;
    }

    .input-group input {
        width: 100px;
        font-size: 1.1em;
    }

    .results {
        flex-direction: column;
        gap: 15px;
    }

    .saving-item {
        width: 100%;
        padding: 15px;
    }

    /* Stats section mobile styles */
    .stats-section {
        padding: 50px 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.8em;
    }

    .stat-label {
        font-size: 0.95em;
    }

    /* Team section mobile styles */
    .team {
        padding: 50px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .image-container {
        width: 100%;
        max-width: 250px;
        height: 300px;
    }

    .team-member h3 {
        font-size: 1.2em;
    }

    .team-member p {
        font-size: 0.9em;
    }

    /* Testimonials mobile styles */
    .testimonials {
        padding: 50px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card .quote {
        font-size: 1em;
    }

    .author h3 {
        font-size: 1.1em;
    }

    .author p {
        font-size: 0.85em;
    }
}

/* Add styles for even smaller screens */
@media (max-width: 480px) {
    .hero-logo {
        max-width: 220px;
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .header-cta-button {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .service-box h3 {
        font-size: 1.3em;
    }

    .price {
        font-size: 1.6em;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px 0;
        max-width: 200px;
    }
    .step-box {
        width: 60px;
        height: 60px;
    }
    .step-item h3 {
        font-size: 0.95em;
    }
}

/* Add landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .feature {
        width: 140px;
    }
}

/* Weekend Service Styles */
.weekend-service-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    margin: 60px auto 0;
    text-align: center;
    transform: translateY(0);
    transition: all 0.2s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 950px;
    width: 94%;
}

.weekend-service-section h3 {
    color: var(--light-blue);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.weekend-service-section p {
    color: var(--white);
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.weekend-service-section p:last-child {
    margin-bottom: 0;
    font-size: 1.2em;
    color: var(--light-blue);
}

@media (max-width: 768px) {
    .weekend-service-section {
        padding: 30px 20px;
        margin-top: 40px;
        width: 95%;
    }

    .weekend-service-section h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .weekend-service-section p {
        font-size: 1.1em;
        margin-bottom: 12px;
    }

    .weekend-service-section p:last-child {
        font-size: 1em;
    }
}

/* Stats Section Styles */
.stats-section {
    background: var(--navy-blue);
    padding: 80px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 10px;
}

/* Add this to handle the plus sign */
.stat-number[data-target="4000+"]::after {
    content: "+";
    display: inline-block;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Add responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-label {
        font-size: 1em;
    }
}

/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 54, 93, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-blue);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loading-overlay p {
    color: var(--white);
    font-size: 1.2em;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Update gradient styles */
.gradient-element {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    mix-blend-mode: screen;
    will-change: transform;
    filter: blur(50px);
    transform-origin: center;
}

/* Remove unused shape styles */
.shape, .shape1, .shape2, .shape3, .shape4, .shape5, 
.shape6, .shape7, .shape8, .shape9, .shape10,
.shape11, .shape12, .shape13, .shape14, .shape15 {
    display: none;
}

/* Move gradient styles near other hero section styles */
.shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: var(--navy-blue);
}

.gradient-element {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    mix-blend-mode: screen;
    will-change: transform;
    filter: blur(50px);
    transform-origin: center;
} 