:root {
    --primary: #084783;
    --secondary: #15A7E0;
    --cta-green: #14993A;
    --hover-green: #71B72B;
    --support-blue: #139ED5;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --border-color: #DCE7EF;
    --overlay: rgba(8, 71, 131, 0.62);
}

.contact-info-card.horizontal-compact.wide {
    max-width: 1200px;
    gap: 1.5rem 2rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--cta-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 153, 58, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--support-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 167, 224, 0.3);
}

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

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

header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 112px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

/* Primary nav link style */
nav ul > li > a {
    color: #084783;
    font-weight: 600;
}

nav ul > li > a:hover {
    color: #15A7E0;
}

/* Dropdown container */
nav ul li.has-dropdown {
    position: relative;
}

/* Dropdown menu */
nav ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(8, 71, 131, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 0.6rem;
    min-width: 280px;
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

/* Dropdown items */
nav ul li .dropdown-menu li {
    list-style: none;
}

nav ul li .dropdown-menu a {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    color: #084783;
    white-space: nowrap;
}

nav ul li .dropdown-menu a:hover {
    background: rgba(21, 167, 224, 0.08);
    color: #15A7E0;
}

/* Show on hover (desktop) */
@media (hover: hover) {
    nav ul li.has-dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile styles: stack nav and make dropdown expandable */
@media (max-width: 900px) {
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    nav ul li.has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav ul li.has-dropdown .dropdown-menu {
        position: static;
        border: 1px solid rgba(8, 71, 131, 0.08);
        box-shadow: none;
        border-radius: 14px;
        padding: 0.4rem;
        margin-top: 0.25rem;
        display: block;
        opacity: 1;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    nav ul li.has-dropdown.open .dropdown-menu {
        max-height: 600px;
    }
}

nav a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

nav a:hover {
    color: var(--secondary);
}

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

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-banner-refined {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-banner-refined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-banner-refined::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-banner-refined .container-wide {
    position: relative;
    z-index: 3;
}

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

.hero-banner-refined .hero-content h1 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-banner-refined .hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-form-refined {
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, rgba(8,71,131,0.18), rgba(21,167,224,0.18)) border-box;
    padding: 1.5rem 2rem 2rem;
    border-radius: 24px;
    border: 1px solid transparent;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    transform: translateY(-20px);
}

.hero-form-refined .form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-form-refined .form-header h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0;
}

.hero-form-refined .form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

.hero-form-refined .form-group {
    margin-bottom: 1rem;
}

.hero-form-refined .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-form-refined .form-group input,
.hero-form-refined .form-group select,
.hero-form-refined .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #DCE7EF;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.hero-form-refined .form-group input:focus,
.hero-form-refined .form-group select:focus,
.hero-form-refined .form-group textarea:focus {
    outline: none;
    border-color: #15A7E0;
    box-shadow: inset 0 0 0 2px rgba(21, 167, 224, 0.18), 0 0 0 3px rgba(21, 167, 224, 0.10);
}

.hero-form-refined .btn-submit {
    position: relative;
    width: 100%;
    background: #14993A;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 24px rgba(20, 153, 58, 0.24);
}

.hero-form-refined .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    background: linear-gradient(90deg, rgba(8,71,131,0.45), rgba(21,167,224,0.55));
    opacity: 0.85;
}

.hero-form-refined .btn-submit:hover {
    background: #71B72B;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(20, 153, 58, 0.3);
}

.hero-form-refined .btn-submit:active {
    transform: translateY(0);
}

.hero-form-refined .trust-line {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-card-refined {
    background: white;
    border: 1px solid #DCE7EF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-refined:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #15A7E0;
}

.service-card-refined .service-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card-refined .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-refined:hover .service-card-image img {
    transform: scale(1.08);
}

.service-icon-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(21, 167, 224, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card-refined:hover .service-icon-frame {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.service-icon-frame span {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card-refined:hover .service-icon-frame span {
    transform: scale(1.1);
}

.service-card-refined .service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-refined h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card-refined p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.why-choose-item-image {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-item:hover .why-choose-item-image img {
    transform: scale(1.1);
}

.why-choose-item-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.why-choose-item-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.maria-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid #15A7E0;
    transition: transform 0.5s ease;
}

.maria-image-frame:hover {
    transform: scale(1.02);
}

.maria-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.maria-content-refined h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.maria-content-refined p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.maria-signature {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(21, 167, 224, 0.05);
    border-left: 4px solid #15A7E0;
    border-radius: 8px;
    margin: 2rem 0;
}

@media (max-width: 700px) {
    .hero-banner-refined {
        min-height: auto;
        padding: 3.25rem 0 2.75rem;
    }

    .hero-banner-layout {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .hero-banner-refined .hero-content {
        text-align: center;
    }

    .hero-banner-refined .hero-content h1 {
        font-size: 2.15rem;
        margin-bottom: 1rem;
    }

    .hero-banner-refined .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1.4rem;
    }

    .hero-form-refined {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-banner-refined {
        min-height: 600px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-item {
        flex-direction: column;
    }

    .why-choose-item-image {
        width: 100%;
        height: 200px;
    }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--support-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.05rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(8,71,131,0.12);
    box-shadow: 0 12px 38px rgba(8,71,131,0.10);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.06);
}

.image-glow {
    box-shadow: 0 8px 30px rgba(21, 167, 224, 0.2);
}

/* Subtle diagonal shine sweep */
.image-shine {
    position: relative;
}

.image-shine::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -60%;
    width: 50%;
    height: 140%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.18) 55%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    filter: blur(1px);
    pointer-events: none;
    animation: shimmer-sweep 6s ease-in-out infinite;
}

@keyframes shimmer-sweep {
    0% { transform: translateX(0) skewX(-20deg); opacity: 0.0; }
    8% { opacity: 1; }
    20% { transform: translateX(220%) skewX(-20deg); opacity: 0; }
    100% { transform: translateX(220%) skewX(-20deg); opacity: 0; }
}

/* Natural tiny sparkles (very subtle) */
.sparkles::before,
.sparkles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.05) 70%, rgba(255,255,255,0) 80%);
    filter: blur(0.3px);
    pointer-events: none;
    animation: sparkle-pulse 5.5s ease-in-out infinite;
}

.sparkles::before {
    top: 14%;
    right: 12%;
    animation-delay: 0.5s;
}

.sparkles::after {
    bottom: 18%;
    left: 10%;
    width: 8px;
    height: 8px;
    animation-delay: 2.2s;
}

@keyframes sparkle-pulse {
    0%, 100% { transform: scale(0.7); opacity: 0; }
    30% { transform: scale(1); opacity: 0.9; }
    60% { transform: scale(0.85); opacity: 0.3; }
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 22px;
    margin: 80px auto;
    max-width: 1200px;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background-color: var(--primary);
    color: white;
    padding: 44px 0 22px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 1.4rem;
}

.footer-logo img {
    height: 92px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem;
    margin-bottom: 2.25rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: block;
}

.footer-section a:hover {
    color: var(--secondary);
}

/* Clickable Phone and Email Links */
a[href^="tel:"],
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer phone and email links */
.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"] {
    color: rgba(255, 255, 255, 0.9);
    display: inline;
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer Social Media Section */
.footer-social {
    text-align: center;
    padding: 2rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
}

.footer-social h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(21, 167, 224, 0.3);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.footer-bottom p {
    color: #ffffff !important;
}

.footer-bottom a {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9) !important;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(21, 167, 224, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-tag {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.area-tag:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(21, 167, 224, 0.3);
}

.area-tag::before {
    content: '📍';
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #FFC107;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
}

.service-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.service-card-content p {
    margin-bottom: 1.5rem;
}

.cleaning-reason-section {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.06), rgba(255, 192, 203, 0.12));
    padding: 80px 0;
    margin: 80px 0;
}

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

.cleaning-reason-text h2 {
    color: #E91E63;
    margin-bottom: 1.5rem;
}

/* Pink-themed enhancements scoped to the Cleaning for a Reason section */
.cleaning-reason-section .image-container {
    border-radius: 22px;
}

.cleaning-reason-section .image-glow {
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.25);
}

.cleaning-reason-section .image-container img {
    filter: saturate(1.05) contrast(1.02);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 2rem;
}

/* Utility: full-width, no padding section (for full-bleed embeds) */
.section--flush {
    padding: 0;
    margin: 0;
}

/* Full-width map iframe styling */
.map-embed-full {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Compact CTA variant (smaller height, tighter typography) */
.cta--compact {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.cta--compact h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 0.4rem;
}

.cta--compact p {
    margin: 0.25rem auto 0.9rem;
    max-width: 900px;
}

/* Soft banner highlight */
.soft-banner {
    background: #eef6ff;
    border: 1px solid rgba(8, 71, 131, 0.08);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 6px 18px rgba(8, 71, 131, 0.06);
}

/* Refined image frame for About page visuals */
.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(8,71,131,0.12);
    box-shadow: 0 12px 40px rgba(8,71,131,0.12);
}

/* Aspect ratio helper for framed images */
.about-image-frame.frame-4x3 {
    aspect-ratio: 4 / 3;
    max-height: 520px;
}

/* Included section (text-only, elegant) */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .included-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-card {
    background: #ffffff;
    border: 1px solid rgba(8,71,131,0.10);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 10px 28px rgba(8,71,131,0.08);
}

.included-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    color: var(--primary);
}

.included-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.included-card li {
    margin: 0.3rem 0;
}

.image-col--narrow {
    max-width: 440px;
    margin: 0 auto;
}

.image-col--narrow img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.03);
    transition: transform 0.5s ease;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 10%, rgba(255,255,255,0.16), rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.06));
    pointer-events: none;
}

.about-image-frame:hover img {
    transform: scale(1.02);
}

.blog-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Horizontal compact variant */
.contact-info-card.horizontal-compact {
    padding: 1rem 1rem;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    justify-items: center;
    text-align: center;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.contact-info-card.horizontal-compact .contact-info-item {
    margin-bottom: 0;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(8,71,131,0.035);
    border: 1px solid rgba(8,71,131,0.10);
    border-radius: 12px;
    padding: 0.9rem 0.9rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(8,71,131,0.04);
}

.contact-info-card.horizontal-compact .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.1rem;
}

.contact-info-card.horizontal-compact h3 {
    margin: 0;
    font-size: 0.98rem;
}

.contact-info-card.horizontal-compact p {
    font-size: 0.93rem;
}

.contact-info-card.horizontal-compact .contact-info-item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 700px) {
    .contact-info-card.horizontal-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 520px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-card.horizontal-compact .contact-info-item {
        padding: 0.75rem 0.75rem;
        border-radius: 10px;
    }

    .contact-info-card.horizontal-compact .contact-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .contact-info-card.horizontal-compact h3 {
        font-size: 0.95rem;
    }

    .contact-info-card.horizontal-compact p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) and (min-width: 701px) {
    .contact-info-card.horizontal-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item:not(:last-child) {
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(8,71,131,0.12);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(160deg, rgba(21,167,224,0.18), rgba(8,71,131,0.14));
    border: 1px solid rgba(8,71,131,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #084783;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 6px 18px rgba(8,71,131,0.08);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.contact-info-item h3 {
    margin: 0 0 0.25rem;
}

.contact-info-item p {
    margin: 0 0 0.25rem;
    color: var(--text-secondary);
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.frequency-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.frequency-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(8, 71, 131, 0.1);
    border: 2px solid rgba(8, 71, 131, 0.08);
    position: relative;
    overflow: hidden;
}

.frequency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.frequency-card:hover::before {
    transform: scaleX(1);
}

.frequency-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(8, 71, 131, 0.15), 0 0 0 1px var(--secondary);
    border-color: var(--secondary);
}

.frequency-icon {
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frequency-icon svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(8, 71, 131, 0.15));
}

.frequency-card:hover .frequency-icon {
    color: var(--secondary);
    transform: scale(1.1) rotate(5deg);
}

.frequency-card:hover .frequency-icon svg {
    filter: drop-shadow(0 4px 12px rgba(21, 167, 224, 0.3));
}

.frequency-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.frequency-card:hover h4 {
    color: var(--secondary);
}

.frequency-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* About page: Why Choose elegant list */
.why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: #ffffff;
    border: 1px solid rgba(8,71,131,0.10);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 6px 18px rgba(8,71,131,0.06);
}

.why-choose-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(21,167,224,0.18), rgba(8,71,131,0.14));
    border: 1px solid rgba(8,71,131,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #084783;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.why-choose-text h4 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
}

.why-choose-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

@media (max-width: 700px) {
    .why-choose-list {
        grid-template-columns: 1fr;
    }
}

/* About page: Trusted Locally box */
.trusted-box {
    background: linear-gradient(135deg, rgba(8,71,131,0.04), rgba(21,167,224,0.06));
    border: 1px solid rgba(8,71,131,0.10);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 10px 28px rgba(8,71,131,0.08);
    max-width: 980px;
    margin: 0 auto;
}

.trusted-box p {
    margin-bottom: 1rem;
}

.why-choose-image-section {
    background: linear-gradient(135deg, rgba(8,71,131,0.035), rgba(21,167,224,0.045));
    position: relative;
    overflow: hidden;
}

.why-choose-image-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 320px at 15% 20%, rgba(255,255,255,0.55), rgba(255,255,255,0) 60%),
        radial-gradient(520px 300px at 85% 65%, rgba(255,255,255,0.45), rgba(255,255,255,0) 62%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.10) 0 1px, rgba(255,255,255,0) 1px 9px);
    opacity: 0.28;
    pointer-events: none;
}

.why-choose-image-section > .container {
    position: relative;
    z-index: 1;
}

.why-choose-image-section .section-title {
    margin-bottom: 1.25rem;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.why-choose-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,1));
    border: 1px solid rgba(8,71,131,0.10);
    border-radius: 20px;
    padding: 1.55rem 1.65rem 1.5rem;
    box-shadow: 0 14px 34px rgba(8,71,131,0.10);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    min-height: 176px;
    display: flex;
    flex-direction: column;
}

.why-choose-card-top {
    margin-top: 0.15rem;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(8,71,131,0.95), rgba(21,167,224,0.95));
    opacity: 0.9;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(8,71,131,0.16);
    border-color: rgba(21,167,224,0.32);
}

.why-choose-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.8rem;
}

.why-choose-card-kicker {
    font-size: 1.15rem;
    font-weight: 850;
    letter-spacing: 0.15px;
    color: var(--primary);
}

.why-choose-card-kicker {
    position: relative;
    padding-bottom: 0.55rem;
}

.why-choose-card-kicker::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--secondary), rgba(21,167,224,0));
    opacity: 0.95;
}

.why-choose-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.02rem;
    margin-top: auto;
}

.why-choose-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.8rem auto 0;
    max-width: 1040px;
}

.why-choose-cta .btn {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(8,71,131,0.12);
}

.why-choose-cta .btn-secondary {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid rgba(8,71,131,0.18);
}

.why-choose-cta .btn-secondary:hover {
    border-color: rgba(21,167,224,0.45);
    box-shadow: 0 16px 36px rgba(8,71,131,0.14);
}

@media (max-width: 700px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .why-choose-card {
        min-height: 0;
        padding: 1.35rem 1.25rem 1.25rem;
    }

    .why-choose-cta {
        margin-top: 1.3rem;
    }
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
    margin-top: 0.5rem;
}

.area-list li {
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
}

.area-list li::before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: 0;
}

@media (max-width: 700px) {
    .area-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cleaning-reason-content {
        grid-template-columns: 1fr;
    }
    
    .frequency-options {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero-banner {
        min-height: 500px;
    }

    .logo img {
        height: 92px;
    }

    .footer-logo img {
        height: 72px;
    }

    .hero-banner-refined {
        min-height: 420px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }

    .hero-banner-refined {
        min-height: 320px;
    }
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Pet-Friendly Cleaning section */
.pet-friendly-section {
    background: #F3FAF3;
    padding: 80px 0;
}

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

/* Frameless premium image style for Pet-Friendly section */
.pet-image-premium {
    position: relative;
    overflow: hidden;
}

.pet-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle natural enhancement: mild warmth, clarity, and brightness */
    filter: brightness(1.05) contrast(1.06) saturate(1.04) sepia(0.03) hue-rotate(-3deg);
    transition: transform 0.5s ease;
}

/* Subtle floor shine: gentle reflective sheen near the bottom area */
.pet-image-premium::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 35%;
    background:
      linear-gradient(to top, rgba(255,255,255,0.22), rgba(255,255,255,0.0) 72%),
      radial-gradient(90% 65% at 50% 100%, rgba(255,255,255,0.14), rgba(255,255,255,0) 62%);
    pointer-events: none;
}

/* Very light highlight streak to suggest a freshly cleaned surface */
.pet-image-premium::before {
    content: '';
    position: absolute;
    left: -20%; right: -20%; bottom: 6%;
    height: 10%;
    background:
      linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.12), rgba(255,255,255,0)),
      linear-gradient(20deg, rgba(255,255,255,0), rgba(255,255,255,0.08) 35%, rgba(255,255,255,0) 60%);
    filter: blur(2px);
    pointer-events: none;
}

.pet-image-premium:hover img {
    transform: scale(1.025);
}

.pet-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.pet-content p {
    font-size: 1.1rem;
}

.pet-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.6rem;
    display: grid;
    gap: 0.6rem;
}

.pet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pet-list li::before {
    content: '🐾';
    font-size: 1.1rem;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .pet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.terms-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.terms-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.terms-content p, .terms-content li {
    color: var(--text-secondary);
    line-height: 1.8;
}

.terms-content ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 71, 131, 0.05), rgba(21, 167, 224, 0.05));
    padding: 4rem 0;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid #DCE7EF;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #14993A, #71B72B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(20, 153, 58, 0.3);
    animation: scaleIn 0.5s ease-out;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.6s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.thank-you-container h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.thank-you-container p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-details {
    background: rgba(21, 167, 224, 0.05);
    border-left: 4px solid #15A7E0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.thank-you-details h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-details li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.thank-you-details li::before {
    content: "✓";
    color: #14993A;
    font-weight: bold;
    font-size: 1.2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #DCE7EF;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #15A7E0;
}

@media (max-width: 768px) {
    .thank-you-container {
        padding: 3rem 2rem;
    }

    .thank-you-container h1 {
        font-size: 2rem;
    }

    .thank-you-container p {
        font-size: 1.1rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}
