/* Brandamo - aurora.css */
/* Custom Color Variables with Creative Naming */
:root {
    --ocean-depth: #073b4c;
    --azure-light: #e6ebee;
    --midnight-blue: #052633;
    --emerald-green: #2d7a4b;
    --sage-whisper: #b8c5b8;
    --amber-glow: #f4a543;
    --sunset-orange: #e8724c;
    --coral-pink: #ff6b8a;
    --pearl-white: #fafbfc;
    --charcoal-gray: #2c3e50;
    --silver-mist: #95a5a6;
    --crimson-red: #e74c3c;
}

/* Global Reset with Human Imperfections */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.61;
    color: var(--midnight-blue);
    background-color: var(--pearl-white);
    overflow-x: hidden;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--ocean-depth);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.3rem; font-weight: 600; }
h3 { font-size: 1.9rem; font-weight: 500; }
h4 { font-size: 1.4rem; font-weight: 500; }

p {
    margin-bottom: 1.1rem;
    color: var(--charcoal-gray);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--emerald-green);
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: var(--amber-glow);
}

/* Container System with Unique Spacing */
.content-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 27px;
}

/* Navigation Styles */
.primary-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.corporate-logo {
    height: 82px;
    width: auto;
    transition: transform 0.27s ease;
}

.corporate-logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--ocean-depth);
    position: relative;
    transition: all 0.31s ease;
    border-radius: 2px;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--ocean-depth);
    transition: all 0.31s ease;
    border-radius: 2px;
}

.hamburger:before { top: -9px; }
.hamburger:after { top: 9px; }

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--midnight-blue);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: all 0.28s ease;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-green);
    transition: width 0.28s ease;
}

.nav-link:hover:before {
    width: 100%;
}

.nav-link:hover {
    color: var(--emerald-green);
}

/* Hero Section */
.hero-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 89px;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 59, 76, 0.85), rgba(5, 38, 51, 0.72));
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-block {
    max-width: 640px;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--amber-glow);
    margin-bottom: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 23px;
    line-height: 1.2;
}

.accent-text {
    color: var(--amber-glow);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 34px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Button Styles */
.primary-action-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--emerald-green), var(--ocean-depth));
    color: white;
    padding: 16px 34px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(45, 122, 75, 0.3);
    border: none;
    cursor: pointer;
}

.primary-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(45, 122, 75, 0.4);
    color: white;
}

.secondary-action-btn {
    display: inline-block;
    background: transparent;
    color: var(--ocean-depth);
    padding: 14px 28px;
    border: 2px solid var(--ocean-depth);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.28s ease;
}

.secondary-action-btn:hover {
    background: var(--ocean-depth);
    color: white;
}

/* About Section */
.about-showcase {
    padding: 89px 0;
    background: var(--pearl-white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.experience-showcase {
    position: relative;
    display: block;
}

.primary-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 21px 45px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson-red), var(--coral-pink));
    position: absolute;
    right: -34px;
    bottom: -34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 13px 27px rgba(231, 76, 60, 0.3);
}

.experience-badge span {
    font-size: 2.1rem;
    line-height: 1;
}

.experience-badge span span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.about-text-container {
    padding-left: 23px;
}

.section-heading {
    position: relative;
    margin-bottom: 34px;
    color: var(--ocean-depth);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 34px;
    color: var(--charcoal-gray);
}

/* Services Section */
.services-showcase {
    padding: 97px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-header-container {
    text-align: center;
    margin-bottom: 67px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--emerald-green);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 13px;
    display: block;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 21px;
    color: var(--ocean-depth);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.service-item {
    background: white;
    padding: 43px 27px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-green), var(--amber-glow));
    transition: left 0.34s ease;
}

.service-item:hover:before {
    left: 0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 45px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
    width: 84px;
    height: 84px;
    margin: 0 auto 27px;
    background: linear-gradient(135deg, var(--azure-light), var(--sage-whisper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
}

.service-item:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--emerald-green), var(--ocean-depth));
}

.service-icon {
    width: 42px;
    height: 42px;
    filter: invert(25%) sepia(40%) saturate(1200%) hue-rotate(180deg) brightness(90%);
    transition: filter 0.28s ease;
}

.service-item:hover .service-icon {
    filter: invert(100%) brightness(110%);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--ocean-depth);
}

.service-description {
    color: var(--charcoal-gray);
    line-height: 1.6;
}

/* Process Section */
.process-showcase {
    padding: 97px 0;
    background: white;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-header {
    text-align: center;
    margin-bottom: 67px;
}

.methodology-title {
    font-size: 2.4rem;
    color: var(--ocean-depth);
    margin-bottom: 21px;
}

.methodology-description {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.learning-pathway {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.pathway-step {
    width: 20%;
    text-align: center;
    position: relative;
}

.pathway-step:after {
    content: '';
    position: absolute;
    top: 29px;
    left: 50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-green), var(--amber-glow));
    border-radius: 3px;
    z-index: -1;
}

.pathway-step:last-child:after {
    display: none;
}

.step-number {
    width: 58px;
    height: 58px;
    border: 4px solid var(--emerald-green);
    background: white;
    border-radius: 50%;
    color: var(--emerald-green);
    display: block;
    position: relative;
    margin: 0 auto 17px;
    transition: all 0.28s ease;
    box-shadow: 0 5px 17px rgba(45, 122, 75, 0.2);
}

.pathway-step:hover .step-number {
    background: var(--emerald-green);
    color: white;
    transform: scale(1.08);
}

.step-number span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
}

.step-description {
    display: block;
    font-weight: 600;
    color: var(--midnight-blue);
    font-size: 15px;
    line-height: 1.4;
}

.pathway-step:hover .step-description {
    color: var(--emerald-green);
}

/* Statistics Section */
.achievement-showcase {
    padding: 97px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 59, 76, 0.9), rgba(5, 38, 51, 0.85));
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 43px;
    position: relative;
    z-index: 2;
}

.achievement-block {
    text-align: center;
    color: white;
}

.achievement-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 23px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
    border: 2px solid rgba(244, 165, 67, 0.5);
}

.achievement-block:hover .achievement-icon {
    background: var(--amber-glow);
    border-color: var(--amber-glow);
    transform: scale(1.05);
}

.stat-icon {
    width: 36px;
    height: 36px;
    filter: invert(100%) brightness(110%);
}

.achievement-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--amber-glow);
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials-showcase {
    padding: 97px 0;
    background: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 67px;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: var(--emerald-green);
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 13px;
    display: block;
}

.testimonials-title {
    font-size: 2.4rem;
    color: var(--ocean-depth);
}

.testimonials-carousel {
    position: relative;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.testimonial-card {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 43px rgba(0, 0, 0, 0.12);
}

.testimonial-wrapper {
    padding: 43px 34px;
    text-align: center;
}

.client-avatar {
    width: 89px;
    height: 89px;
    border-radius: 50%;
    margin: 0 auto 27px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--azure-light);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal-gray);
    margin-bottom: 27px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean-depth);
    margin-bottom: 5px;
}

.client-position {
    color: var(--emerald-green);
    font-weight: 500;
}

/* Features Section */
.features-showcase {
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 450px;
}

.feature-item {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 43px 27px;
    transition: all 0.34s ease;
    overflow: hidden;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 59, 76, 0.85), rgba(232, 114, 76, 0.75));
    transition: all 0.34s ease;
}

.feature-item:hover:before {
    background: linear-gradient(135deg, rgba(7, 59, 76, 0.75), rgba(45, 122, 75, 0.85));
}

.feature-content {
    position: relative;
    z-index: 2;
    color: white;
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 17px;
    font-weight: 600;
}

.feature-description {
    font-size: 1rem;
    margin-bottom: 27px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.feature-link {
    display: inline-block;
    color: var(--amber-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 13px 27px;
    border: 2px solid var(--amber-glow);
    border-radius: 6px;
    transition: all 0.28s ease;
}

.feature-link:hover {
    background: var(--amber-glow);
    color: white;
}

/* Footer Section */
.primary-footer {
    background: var(--ocean-depth);
    padding: 89px 0 43px;
    color: white;
}

.footer-main-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 43px;
    margin-bottom: 43px;
}

.footer-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 27px;
    color: white;
}

.company-profile-widget p,
.contact-details-widget p {
    color: var(--silver-mist);
    line-height: 1.7;
    margin-bottom: 17px;
}

.contact-phone,
.contact-email {
    display: block;
    color: var(--amber-glow);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 13px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 13px;
}

.footer-links-list a {
    color: var(--silver-mist);
    font-size: 15px;
    transition: color 0.28s ease;
}

.footer-links-list a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    margin-top: 17px;
}

.newsletter-input {
    flex: 1;
    height: 48px;
    padding: 0 17px;
    border: none;
    border-radius: 6px 0 0 6px;
    font-size: 15px;
    outline: none;
}

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: var(--amber-glow);
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.28s ease;
}

.newsletter-btn:hover {
    background: var(--sunset-orange);
}

.submit-icon {
    width: 20px;
    height: 20px;
    filter: invert(100%);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 43px 0;
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: var(--silver-mist);
    font-size: 14px;
    margin: 0;
}

.copyright-text a {
    color: var(--amber-glow);
}

.social-links {
    display: flex;
    gap: 13px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
}

.social-link:hover {
    background: var(--amber-glow);
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;
    height: 18px;
    filter: invert(100%);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.34s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 23px;
        font-size: 1.1rem;
        color: var(--ocean-depth);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design with Unusual Breakpoints */
@media screen and (max-width: 1280px) {
    .content-wrapper {
        padding: 0 23px;
    }

    .hero-main-title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 890px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -27px auto 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .feature-item {
        min-height: 320px;
    }

    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
}

@media screen and (max-width: 640px) {
    .hero-main-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .learning-pathway {
        flex-direction: column;
        gap: 27px;
    }

    .pathway-step {
        width: 100%;
    }

    .pathway-step:after {
        display: none;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 27px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .footer-bottom-section {
        flex-direction: column;
        gap: 17px;
        text-align: center;
    }
}

/* Animation Classes */
.animated-entry {
    animation: fadeInUp 0.8s ease-out;
}

.animated-card {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Accessibility and Focus States */
.nav-link:focus,
.primary-action-btn:focus,
.secondary-action-btn:focus,
.feature-link:focus {
    outline: 3px solid var(--amber-glow);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .primary-header,
    .primary-footer {
        display: none;
    }

    .hero-showcase {
        min-height: auto;
        padding: 21px 0;
    }

    * {
        background: white !important;
        color: black !important;
    }
}

/* Services Hero Section */
.services-hero-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 89px;
}

.hero-background-filter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 59, 76, 0.8), rgba(45, 122, 75, 0.7));
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.services-main-heading {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 27px;
    line-height: 1.2;
}

.emphasis-color {
    color: var(--amber-glow);
}

.services-hero-description {
    font-size: 1.3rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* Pricing Cards Section */
.pricing-showcase {
    padding: 97px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.pricing-header-zone {
    text-align: center;
    margin-bottom: 73px;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--emerald-green);
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.pricing-main-title {
    font-size: 2.7rem;
    margin-bottom: 23px;
    color: var(--ocean-depth);
}

.pricing-description {
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 38px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 17px;
    padding: 43px 32px;
    box-shadow: 0 13px 43px rgba(0, 0, 0, 0.09);
    transition: all 0.37s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-11px);
    box-shadow: 0 27px 67px rgba(0, 0, 0, 0.15);
    border-color: var(--emerald-green);
}

.featured-package {
    border: 3px solid var(--amber-glow);
    transform: scale(1.03);
}

.featured-package:hover {
    transform: scale(1.03) translateY(-11px);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber-glow);
    color: white;
    padding: 7px 23px;
    border-radius: 21px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.package-header {
    text-align: center;
    margin-bottom: 34px;
}

.package-icon-area {
    width: 73px;
    height: 73px;
    margin: 0 auto 21px;
    background: linear-gradient(135deg, var(--azure-light), var(--sage-whisper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon {
    width: 34px;
    height: 34px;
    filter: invert(25%) sepia(40%) saturate(1200%) hue-rotate(180deg) brightness(90%);
}

.featured-package .package-icon-area {
    background: linear-gradient(135deg, var(--amber-glow), var(--sunset-orange));
}

.featured-package .package-icon {
    filter: invert(100%) brightness(110%);
}

.package-name {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--ocean-depth);
}

.package-subtitle {
    color: var(--silver-mist);
    font-size: 15px;
    margin: 0;
}

.pricing-details {
    text-align: center;
    margin-bottom: 38px;
    padding: 21px 0;
    background: rgba(244, 165, 67, 0.05);
    border-radius: 11px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency-symbol {
    font-size: 1.4rem;
    color: var(--emerald-green);
    font-weight: 600;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--ocean-depth);
    margin: 0 5px;
}

.price-period {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
}

.price-note {
    color: var(--silver-mist);
    font-size: 14px;
    margin: 0;
}

.package-features {
    list-style: none;
    margin-bottom: 38px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    font-size: 15px;
    color: var(--charcoal-gray);
}

.feature-icon {
    width: 18px;
    height: 18px;
    margin-right: 13px;
    filter: invert(44%) sepia(69%) saturate(3567%) hue-rotate(137deg) brightness(85%) contrast(89%);
}

.package-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, var(--emerald-green), var(--ocean-depth));
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.31s ease;
    border: none;
    cursor: pointer;
}

.package-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(45, 122, 75, 0.4);
    color: white;
}

.featured-btn {
    background: linear-gradient(135deg, var(--amber-glow), var(--sunset-orange));
}

/* Additional Services Section */
.additional-services-area {
    padding: 89px 0;
    background: var(--pearl-white);
}

.additional-services-header {
    text-align: center;
    margin-bottom: 63px;
}

.additional-title {
    font-size: 2.4rem;
    color: var(--ocean-depth);
    margin-bottom: 19px;
}

.additional-description {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    max-width: 590px;
    margin: 0 auto;
    line-height: 1.7;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 29px;
}

.additional-service-card {
    background: white;
    padding: 38px 27px;
    border-radius: 13px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.07);
    transition: all 0.29s ease;
    text-align: center;
}

.additional-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 17px 41px rgba(0, 0, 0, 0.12);
}

.service-visual-area {
    margin-bottom: 23px;
}

.additional-service-icon {
    width: 52px;
    height: 52px;
    filter: invert(25%) sepia(40%) saturate(1200%) hue-rotate(180deg) brightness(90%);
}

.additional-service-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--ocean-depth);
}

.additional-service-desc {
    color: var(--charcoal-gray);
    line-height: 1.6;
    margin-bottom: 21px;
    font-size: 15px;
}

.service-pricing-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--emerald-green);
}

.service-unit {
    color: var(--silver-mist);
    font-size: 14px;
}

/* Advantages Section */
.advantages-showcase {
    padding: 91px 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.advantages-header-area {
    text-align: center;
    margin-bottom: 67px;
}

.advantages-main-title {
    font-size: 2.5rem;
    color: var(--ocean-depth);
    margin-bottom: 21px;
}

.advantages-intro-text {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    max-width: 630px;
    margin: 0 auto;
    line-height: 1.7;
}

.advantages-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 43px;
}

.advantage-feature-item {
    background: white;
    padding: 41px 29px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 9px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.32s ease;
}

.advantage-feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.14);
}

.advantage-icon-container {
    width: 78px;
    height: 78px;
    margin: 0 auto 27px;
    background: linear-gradient(135deg, var(--emerald-green), var(--ocean-depth));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon {
    width: 36px;
    height: 36px;
    filter: invert(100%) brightness(110%);
}

.advantage-title {
    font-size: 1.4rem;
    margin-bottom: 17px;
    color: var(--ocean-depth);
}

.advantage-description {
    color: var(--charcoal-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .services-main-heading {
        font-size: 2.6rem;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .featured-package {
        transform: none;
    }

    .featured-package:hover {
        transform: translateY(-11px);
    }
}

@media screen and (max-width: 640px) {
    .services-main-heading {
        font-size: 2.1rem;
    }

    .pricing-main-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 2.4rem;
    }

    .advantages-content-grid {
        grid-template-columns: 1fr;
    }
}

.hero-main-title,
.services-main-heading{
    color: #fff;
}

/* Contact Hero Section */
.contact-hero-banner {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 89px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 59, 76, 0.82), rgba(232, 114, 76, 0.75));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-main-heading {
    font-size: 3.1rem;
    font-weight: 700;
    margin-bottom: 23px;
    line-height: 1.2;
}

.contact-accent-text {
    color: var(--amber-glow);
}

.contact-hero-description {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.91);
}

/* Contact Form Section */
.contact-form-area {
    padding: 97px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 67px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 47px 38px;
    border-radius: 17px;
    box-shadow: 0 13px 43px rgba(0, 0, 0, 0.08);
}

.form-header-section {
    margin-bottom: 43px;
    text-align: center;
}

.form-section-title {
    font-size: 2.1rem;
    color: var(--ocean-depth);
    margin-bottom: 17px;
}

.form-intro-text {
    color: var(--charcoal-gray);
    line-height: 1.7;
    font-size: 15px;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
}

.form-field-group.full-width {
    grid-column: 1 / -1;
}

.field-label {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    font-weight: 600;
    color: var(--ocean-depth);
    font-size: 14px;
}

.label-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    filter: invert(25%) sepia(40%) saturate(1200%) hue-rotate(180deg) brightness(90%);
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    padding: 14px 17px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 15px;
    color: var(--charcoal-gray);
    background: white;
    transition: all 0.28s ease;
    font-family: inherit;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 75, 0.1);
}

.form-input-field.error,
.form-select-field.error {
    border-color: var(--crimson-red);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-textarea-field {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--crimson-red);
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    margin-bottom: 0;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: white;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    transition: all 0.28s ease;
}

.checkmark .check-icon {
    width: 13px;
    height: 13px;
    filter: invert(100%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--emerald-green);
    border-color: var(--emerald-green);
}

.checkbox-container input:checked ~ .checkmark .check-icon {
    opacity: 1;
}

.checkbox-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--charcoal-gray);
}

.checkbox-text a {
    color: var(--emerald-green);
    text-decoration: underline;
}

.form-submit-area {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 21px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background: linear-gradient(135deg, var(--emerald-green), var(--ocean-depth));
    color: white;
    padding: 17px 43px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.31s ease;
    min-width: 280px;
}

.form-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 11px 27px rgba(45, 122, 75, 0.35);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-icon {
    width: 18px;
    height: 18px;
    filter: invert(100%);
}

/* Contact Information */
.contact-info-container {
    background: white;
    padding: 43px 32px;
    border-radius: 17px;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.07);
    height: fit-content;
}

.contact-info-header {
    margin-bottom: 38px;
    text-align: center;
}

.info-section-title {
    font-size: 1.7rem;
    color: var(--ocean-depth);
    margin-bottom: 13px;
}

.info-description {
    color: var(--charcoal-gray);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-items {
    margin-bottom: 34px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 21px 0;
    border-bottom: 1px solid #f0f2f5;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--azure-light), var(--sage-whisper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 17px;
    flex-shrink: 0;
}

.contact-info-icon {
    width: 22px;
    height: 22px;
    filter: invert(25%) sepia(40%) saturate(1200%) hue-rotate(180deg) brightness(90%);
}

.info-title {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    margin-bottom: 7px;
    font-weight: 600;
}

.info-text {
    color: var(--charcoal-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.info-text a {
    color: var(--emerald-green);
    font-weight: 500;
}

.info-text small {
    color: var(--silver-mist);
    font-size: 12px;
}

.quick-contact-section {
    background: linear-gradient(135deg, rgba(45, 122, 75, 0.05), rgba(7, 59, 76, 0.05));
    padding: 27px;
    border-radius: 11px;
    text-align: center;
}

.quick-contact-title {
    font-size: 1.2rem;
    color: var(--ocean-depth);
    margin-bottom: 11px;
}

.quick-contact-text {
    color: var(--charcoal-gray);
    font-size: 14px;
    margin-bottom: 19px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: white;
    padding: 13px 23px;
    border-radius: 27px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.28s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: white;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    filter: invert(100%);
}

/* FAQ Section */
.faq-showcase {
    padding: 89px 0;
    background: #f8f9fa;
}

.faq-header-area {
    text-align: center;
    margin-bottom: 63px;
}

.faq-main-title {
    font-size: 2.4rem;
    color: var(--ocean-depth);
    margin-bottom: 19px;
}

.faq-intro-text {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    max-width: 570px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-content-grid {
    max-width: 870px;
    margin: 0 auto;
}

.faq-question-item {
    background: white;
    border-radius: 11px;
    margin-bottom: 17px;
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.28s ease;
}

.faq-question-item:hover {
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1);
}

.faq-question-header {
    padding: 27px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question-text {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    margin: 0;
    font-weight: 600;
}

.faq-toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.plus-icon,
.minus-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    filter: invert(44%) sepia(69%) saturate(3567%) hue-rotate(137deg) brightness(85%) contrast(89%);
    transition: opacity 0.28s ease;
}

.minus-icon {
    opacity: 0;
}

.faq-question-item.active .plus-icon {
    opacity: 0;
}

.faq-question-item.active .minus-icon {
    opacity: 1;
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s ease;
}

.faq-answer-content p {
    padding: 0 32px 27px;
    margin: 0;
    color: var(--charcoal-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .form-grid-layout {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .contact-main-heading {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 640px) {
    .contact-main-heading {
        font-size: 1.9rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 32px 23px;
    }

    .faq-question-header {
        padding: 21px 23px;
    }

    .faq-answer-content p {
        padding: 0 23px 21px;
    }

    .form-submit-btn {
        min-width: 100%;
        padding: 15px 27px;
    }
}

.contact-main-heading {
    color: #fff;
}

/* Thank You Hero Section */
.thankyou-hero-banner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 89px;
}

.success-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 122, 75, 0.85), rgba(7, 59, 76, 0.78));
}

.thankyou-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.success-icon-container {
    margin-bottom: 34px;
}

.success-icon-large {
    width: 89px;
    height: 89px;
    filter: invert(100%) brightness(110%);
    animation: successPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes successPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.thankyou-main-heading {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 27px;
    line-height: 1.2;
}

.thankyou-success-message {
    font-size: 1.3rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* Confirmation Details Section */
.confirmation-details-area {
    padding: 97px 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.confirmation-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 63px;
    align-items: start;
}

.confirmation-info-container {
    background: white;
    padding: 47px 41px;
    border-radius: 17px;
    box-shadow: 0 13px 43px rgba(0, 0, 0, 0.08);
}

.confirmation-header {
    margin-bottom: 43px;
    text-align: center;
}

.confirmation-title {
    font-size: 2.3rem;
    color: var(--ocean-depth);
    margin-bottom: 17px;
}

.confirmation-subtitle {
    color: var(--charcoal-gray);
    line-height: 1.7;
    font-size: 15px;
}

.reference-number-display {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 122, 75, 0.05), rgba(244, 165, 67, 0.05));
    padding: 27px 32px;
    border-radius: 13px;
    margin-bottom: 47px;
    border-left: 4px solid var(--emerald-green);
}

.reference-icon-area {
    width: 52px;
    height: 52px;
    background: var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 21px;
}

.reference-icon {
    width: 24px;
    height: 24px;
    filter: invert(100%) brightness(110%);
}

.reference-details {
    display: flex;
    flex-direction: column;
}

.reference-label {
    font-size: 14px;
    color: var(--silver-mist);
    margin-bottom: 5px;
    font-weight: 500;
}

.reference-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ocean-depth);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.next-steps-container {
    margin-top: 34px;
}

.steps-title {
    font-size: 1.6rem;
    color: var(--ocean-depth);
    margin-bottom: 32px;
    text-align: center;
}

.steps-timeline {
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
    position: relative;
    padding-left: 67px;
}

.timeline-step:not(:last-child):before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    width: 2px;
    height: calc(100% + 10px);
    background: #e1e5e9;
}

.step-icon-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.completed-step .step-icon-wrapper {
    background: var(--emerald-green);
}

.active-step .step-icon-wrapper {
    background: var(--amber-glow);
    animation: activeStepPulse 1.5s ease-in-out infinite;
}

.pending-step .step-icon-wrapper {
    background: #e1e5e9;
}

@keyframes activeStepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 165, 67, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(244, 165, 67, 0); }
}

.step-completion-icon,
.step-process-icon,
.step-future-icon {
    width: 22px;
    height: 22px;
}

.completed-step .step-completion-icon,
.active-step .step-process-icon {
    filter: invert(100%) brightness(110%);
}

.pending-step .step-future-icon {
    filter: invert(60%) sepia(8%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(89%);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    margin-bottom: 7px;
    font-weight: 600;
}

.step-description {
    color: var(--charcoal-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.step-time {
    font-size: 13px;
    color: var(--silver-mist);
    font-weight: 500;
}

/* Additional Actions */
.additional-actions-container {
    background: white;
    padding: 43px 35px;
    border-radius: 17px;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.07);
    height: fit-content;
}

.actions-header {
    margin-bottom: 38px;
    text-align: center;
}

.actions-title {
    font-size: 1.7rem;
    color: var(--ocean-depth);
    margin-bottom: 13px;
}

.actions-subtitle {
    color: var(--charcoal-gray);
    font-size: 15px;
    line-height: 1.6;
}

.action-cards-grid {
    margin-bottom: 38px;
}

.action-card {
    background: #f8f9fa;
    padding: 27px 23px;
    border-radius: 11px;
    margin-bottom: 19px;
    transition: all 0.28s ease;
    border-left: 4px solid transparent;
}

.action-card:hover {
    background: white;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.08);
    border-left-color: var(--emerald-green);
    transform: translateX(5px);
}

.action-icon-container {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--azure-light), var(--sage-whisper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.action-icon {
    width: 20px;
    height: 20px;
    filter: invert(25%) sepia(40%) saturate(1200%) hue-rotate(180deg) brightness(90%);
}

.action-title {
    font-size: 1.1rem;
    color: var(--ocean-depth);
    margin-bottom: 9px;
    font-weight: 600;
}

.action-description {
    color: var(--charcoal-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 13px;
}

.action-link {
    color: var(--emerald-green);
    font-weight: 500;
    font-size: 14px;
    text-decoration: underline;
}

.action-link:hover {
    color: var(--ocean-depth);
}

.urgent-contact-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(255, 107, 138, 0.05));
    padding: 27px;
    border-radius: 11px;
    text-align: center;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.urgent-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 13px;
}

.urgent-icon {
    width: 20px;
    height: 20px;
    filter: invert(44%) sepia(89%) saturate(2851%) hue-rotate(346deg) brightness(95%) contrast(84%);
}

.urgent-title {
    font-size: 1.1rem;
    color: var(--crimson-red);
    margin: 0;
    font-weight: 600;
}

.urgent-text {
    color: var(--charcoal-gray);
    font-size: 14px;
    margin-bottom: 21px;
    line-height: 1.6;
}

.urgent-contact-buttons {
    display: flex;
    gap: 13px;
    justify-content: center;
}

.urgent-phone-btn,
.urgent-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 19px;
    border-radius: 23px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.28s ease;
}

.urgent-phone-btn {
    background: var(--crimson-red);
    color: white;
}

.urgent-phone-btn:hover {
    background: #c0392b;
    color: white;
}

.urgent-whatsapp-btn {
    background: #25d366;
    color: white;
}

.urgent-whatsapp-btn:hover {
    background: #128c7e;
    color: white;
}

.urgent-btn-icon {
    width: 16px;
    height: 16px;
    filter: invert(100%);
}

/* Success Statistics */
.success-stats-showcase {
    padding: 89px 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.stats-header-area {
    text-align: center;
    margin-bottom: 67px;
}

.stats-main-title {
    font-size: 2.5rem;
    color: var(--ocean-depth);
    margin-bottom: 21px;
}

.stats-intro-text {
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    max-width: 590px;
    margin: 0 auto;
    line-height: 1.7;
}

.success-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.metric-item {
    background: white;
    padding: 43px 29px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 9px 29px rgba(0, 0, 0, 0.08);
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}

.metric-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-green), var(--amber-glow));
}

.metric-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.14);
}

.metric-icon-area {
    width: 67px;
    height: 67px;
    margin: 0 auto 23px;
    background: linear-gradient(135deg, var(--emerald-green), var(--ocean-depth));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon {
    width: 32px;
    height: 32px;
    filter: invert(100%) brightness(110%);
}

.metric-percentage {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ocean-depth);
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-green);
    margin-bottom: 11px;
}

.metric-description {
    color: var(--charcoal-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .confirmation-content-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .thankyou-main-heading {
        font-size: 2.6rem;
    }

    .urgent-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .thankyou-main-heading {
        font-size: 2.1rem;
    }

    .confirmation-info-container,
    .additional-actions-container {
        padding: 32px 23px;
    }

    .reference-number-display {
        flex-direction: column;
        text-align: center;
    }

    .reference-icon-area {
        margin: 0 auto 17px;
    }

    .timeline-step {
        padding-left: 57px;
    }

    .success-metrics-grid {
        grid-template-columns: 1fr;
    }
}