/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette aligned with the business card: deep green + lime accent */
    --primary-navy: #0E3427; /* deep green */
    --accent-gold: #D6E03B;  /* lime-yellow */
    --accent-gold-bright: #E6FF6A; /* brighter accent for hovers/gradients */
    --pure-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E5E7EB;
    --dark-gray: #6B7280;
    --text-dark: #1F2937;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
}

/* Brand-consistent link styles and highlight */
a {
    color: var(--primary-navy);
    text-decoration-color: rgba(14, 52, 39, 0.35);
    text-underline-offset: 2px;
    -webkit-tap-highlight-color: rgba(214, 224, 59, 0.2);
}

a:hover {
    color: var(--accent-gold);
    text-decoration-color: var(--accent-gold);
}

a:visited {
    color: var(--primary-navy);
}

a:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 6px;
}

::selection {
    background: rgba(214, 224, 59, 0.28);
    color: var(--primary-navy);
}

::-moz-selection {
    background: rgba(214, 224, 59, 0.28);
    color: var(--primary-navy);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-navy));
    border-radius: 2px;
}

/* Hero Section */
.hero {
    /* Ensure full viewport fit on all browsers */
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-block: clamp(2rem, 6vh, 5rem);
    background: radial-gradient(1200px 600px at 20% 20%, rgba(214, 224, 59, 0.08), transparent 60%),
                radial-gradient(900px 500px at 80% 70%, rgba(255, 255, 255, 0.05), transparent 60%),
                linear-gradient(135deg, #0E3427 0%, #144135 50%, #0E3427 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 450px at 50% 30%, rgba(255, 255, 255, 0.04), transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--pure-white);
    max-width: 1000px;
    padding: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1rem, 2vw, 2rem);
}

.hero-content {
    animation: heroFadeIn 1.2s ease-out;
}

/* Hero branding */
.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-logo {
    height: clamp(64px, 10vw, 110px);
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
    animation: subtleFloat 6s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(214, 224, 59, 0.2), rgba(214, 224, 59, 0.1));
    border: 1px solid rgba(214, 224, 59, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: clamp(1rem, 2.5vh, 2rem);
}

.hero-title-main {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--pure-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out 0.3s both;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    animation: subtitleFadeIn 1s ease-out 0.6s both;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: clamp(1.25rem, 3vh, 2.5rem) 0;
    flex-wrap: wrap;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: highlightFadeIn 1s ease-out both;
}

.hero-highlight:nth-child(1) { animation-delay: 0.8s; }
.hero-highlight:nth-child(2) { animation-delay: 1s; }
.hero-highlight:nth-child(3) { animation-delay: 1.2s; }

.hero-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-highlight i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto clamp(1.25rem, 3vh, 3rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: descriptionFadeIn 1s ease-out 1.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: actionsFadeIn 1s ease-out 1.6s both;
}

/* Height-constrained viewports: reduce sizes so hero fits without scroll */
@media (max-height: 760px) and (min-width: 769px) {
    .hero-title-main {
        font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    }
    .hero-title-sub {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
    }
    .hero-logo {
        height: clamp(56px, 8vw, 90px);
    }
    .hero-description {
        max-width: 700px;
    }
}

@media (max-height: 620px) and (min-width: 769px) {
    .hero {
        padding-block: 1.25rem;
    }
    .hero-highlights {
        margin: 1rem 0;
        gap: 1rem;
    }
}

.cta-button {
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(214, 224, 59, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 224, 59, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Removed scroll arrow styles */

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.about::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(-15deg);
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto 0;
    font-weight: 400;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    padding: 4px;
}

.profile-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 21px;
}

.about-image:hover .profile-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
}

.overlay-text span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.overlay-text small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    padding: 1rem 0;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.about-description strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.about-values {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.values-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    color: var(--primary-navy);
    font-size: 1.2rem;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.3rem;
}

.value-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.about-experience {
    margin-bottom: 3rem;
}

.highlights {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(14, 52, 39, 0.02), rgba(214, 224, 59, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(14, 52, 39, 0.05);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item:hover {
    background: var(--pure-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-left-color: var(--accent-gold);
}

.highlight-item i {
    color: var(--accent-gold);
    font-size: 1.8rem;
    width: 50px;
    text-align: center;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-item strong {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1.05rem;
}

.highlight-item span {
    font-weight: 400;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(14, 52, 39, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 224, 59, 0.02), rgba(14, 52, 39, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.service-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fefcf7 100%);
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright));
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), #165A48);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-navy);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
    line-height: 1.3;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.service-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 52, 39, 0.15);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0b2a20 50%, var(--primary-navy) 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 80%;
    height: 160%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    transform: rotate(12deg);
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(214, 224, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

/* Ensure the contact section heading is white on dark background */
.contact .section-title {
    color: var(--pure-white);
}

.contact .section-title::after {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding-right: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-card .contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-card .contact-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.contact-details {
    margin-bottom: 3rem;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.contact-item .contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-navy);
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--pure-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Clickable contact links (tel/mailto) */
.contact-item a.contact-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.contact-item a.contact-link:visited {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a.contact-link:hover,
.contact-item a.contact-link:focus {
    color: var(--accent-gold);
    text-decoration: underline;
    outline: none;
}

.contact-item small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.contact-benefits {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-benefits h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(14, 52, 39, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--pure-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(214, 224, 59, 0.15);
    background: #fefcf7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dark-gray);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    color: var(--text-dark);
}

.form-group select option {
    padding: 0.5rem;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 52, 39, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.form-footer .cta-button {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.form-footer .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(214, 224, 59, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 1.25rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-name {
    color: var(--pure-white);
    font-weight: 700;
}

.footer-license {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.65);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(14, 52, 39, 0.06);
    border-bottom: 1px solid rgba(14, 52, 39, 0.04);
    padding: 0.9rem 0;
}

.promo-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-media {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-image {
    height: 48px;
    width: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgb(0 0 0 / 0.05));
}

.promo-text {
    font-size: 0.95rem;
    color: var(--text-dark, #1F2937);
}

.promo-text strong {
    color: var(--primary-navy, #0E3427);
}

.promo-text .promo-brand {
    font-weight: 700;
    color: var(--primary-navy, #0E3427);
    text-decoration: none;
    border-bottom: 2px solid rgba(214, 224, 59, 0.35);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.promo-text .promo-brand:hover {
    color: var(--accent-gold, #D6E03B);
    border-bottom-color: var(--accent-gold, #D6E03B);
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    color: var(--primary-navy, #0E3427);
    border: 1px solid rgba(214, 224, 59, 0.5);
    background: linear-gradient(135deg, rgba(214, 224, 59, 0.08), rgba(214, 224, 59, 0.04));
    transition: all 0.2s ease;
    white-space: nowrap;
}

.promo-cta i {
    color: var(--accent-gold, #D6E03B);
}

.promo-cta:hover {
    transform: translateY(-1px);
    border-color: var(--accent-gold, #D6E03B);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1));
}

@media (max-width: 768px) {
    .hero-header {
        flex-direction: column;
        text-align: center;
    }
    .promo-banner-container {
        flex-direction: column;
        align-items: center; /* center content on mobile */
        gap: 0.75rem;
    }

    /* Center CTA button on mobile */
    .promo-cta {
        align-self: center;
    }

    .promo-image {
        height: 42px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 20px rgba(214, 224, 59, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(214, 224, 59, 0.5);
    }
}

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

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

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

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

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

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes bounceScroll {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title { /* headline width adapts on small screens */ }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text {
        padding: 0;
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .highlight-item i {
        width: auto;
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: stretch;
    }

    .contact-info {
        padding-right: 0;
        order: 2;
        height: auto;
    }

    .contact-form {
        order: 1;
        height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .form-footer .cta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-benefits {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .service-card {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .service-number {
        position: relative;
        left: auto;
        top: auto;
    }

    .service-icon {
        left: auto;
        position: relative;
    }

    .service-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .about, .services, .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading animation for images */
.profile-image {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--medium-gray) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.profile-image[src] {
    animation: none;
    background: none;
}
