/* ===== CSS Variables ===== */
:root {
    --primary-color: #1B4B82;
    --primary-dark: #153C68;
    --primary-light: #2A5A91;
    --secondary-color: #E07B5F;
    --accent-color: #E07B5F;
    --teal-color: #5B8B8A;
    --peach-light: #F2A896;
    --cream-bg: #FAF3E6;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #FAF3E6;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NEW Navigation - Glass Style ===== */
.nav-glass {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1200px;
    z-index: 1000;
    transition: var(--transition);
}

.nav-glass-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-glass.scrolled .nav-glass-inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Logo */
.logo-new {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo-new:hover .logo-svg {
    transform: scale(1.02);
}

.footer-logo-svg {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: var(--transition);
}

.footer-logo-new:hover .footer-logo-svg {
    opacity: 1;
    transform: scale(1.02);
}

/* Nav Center Pills */
.nav-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream-bg);
    padding: 0.35rem;
    border-radius: 50px;
}

.nav-pill {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: var(--transition);
}

.nav-pill:hover {
    color: var(--primary-color);
}

.nav-pill.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-phone-pill:hover {
    color: var(--primary-color);
}

.nav-phone-pill svg {
    stroke: var(--secondary-color);
}

.nav-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D06A4E 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(224, 123, 95, 0.35);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(224, 123, 95, 0.45);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.footer-logo-image {
    height: 80px;
    width: auto;
}

/* ===== NEW HERO - Dramatic Full Screen ===== */
.hero-dramatic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream-bg) 0%, #fff 50%, var(--cream-bg) 100%);
    overflow: hidden;
    padding: 100px 0;
}

/* Animated Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--peach-light) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--teal-color) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    animation: float-shape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 50%;
    left: 10%;
    opacity: 0.1;
    animation: float-shape 15s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 20%;
    right: 20%;
    opacity: 0.1;
    animation: float-shape 18s ease-in-out infinite reverse;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(0, -50px) rotate(0deg); }
    75% { transform: translate(-30px, -30px) rotate(-5deg); }
}

.hero-dramatic-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-center-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Badge Pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: relative;
}

.hero-badge-pill svg {
    stroke: var(--teal-color);
}

.pulse-ring {
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-ring-anim 2s ease-out infinite;
}

@keyframes pulse-ring-anim {
    0% { box-shadow: 0 0 0 0 rgba(224, 123, 95, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(224, 123, 95, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 123, 95, 0); }
}

/* Mega Title */
.hero-mega-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--text-dark);
}

.title-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Row */
.hero-action-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D06A4E 100%);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(224, 123, 95, 0.4);
    transition: var(--transition);
}

.btn-hero-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(224, 123, 95, 0.5);
}

.btn-hero-main svg {
    transition: transform 0.3s ease;
}

.btn-hero-main:hover svg {
    transform: translateX(5px);
}

.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.btn-hero-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.call-icon-ring {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--teal-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-icon-ring svg {
    stroke: white;
}

.call-text {
    text-align: left;
}

.call-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-text strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Floating Cards */
.hero-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float-card 6s ease-in-out infinite;
}

.floating-card-icon {
    font-size: 1.75rem;
}

.floating-card-content strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
}

.floating-card-content span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-1 {
    top: 30%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: 12%;
    animation-delay: 3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Image Circle */
.hero-image-circle {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 1;
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.image-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed var(--peach-light);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite;
}

.image-ring.ring-2 {
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border-color: var(--teal-color);
    opacity: 0.3;
    animation-direction: reverse;
    animation-duration: 40s;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

.text-coral {
    color: var(--secondary-color);
}

.btn-primary-new {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(224, 123, 95, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-new:hover {
    background: #D06A4E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 123, 95, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.arrow {
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-hero-primary:hover .arrow {
    transform: translateX(5px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hero-features-new {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item-new svg {
    flex-shrink: 0;
}

/* Right Content - Stats */
.hero-content-right {
    animation: slideInRight 1s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-card-1 { animation-delay: 0.2s; }
.stat-card-2 { animation-delay: 0.3s; }
.stat-card-3 { animation-delay: 0.4s; }
.stat-card-4 { animation-delay: 0.5s; }

.stat-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.trust-badge svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.trust-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Section Styles ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== DRAMATIC Section Styles ===== */
.section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-s1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--peach-light) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: float-shape 25s ease-in-out infinite;
}

.shape-s2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--teal-color) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    opacity: 0.2;
    animation: float-shape 20s ease-in-out infinite reverse;
}

.shape-s3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    opacity: 0.15;
    animation: float-shape 22s ease-in-out infinite;
}

.shape-s4 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 70%);
    top: -50px;
    right: 10%;
    opacity: 0.15;
    animation: float-shape 18s ease-in-out infinite reverse;
}

/* Section Headers - Dramatic */
.section-header-dramatic {
    margin-bottom: 4rem;
}

.section-header-center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.section-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtext {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 550px;
}

.section-header-center .section-subtext {
    margin: 0 auto;
}

/* ===== Services Section - Dramatic ===== */
.services-dramatic {
    padding: 7rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.25rem;
}

.service-bento-item {
    background: var(--cream-bg);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-bento-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.service-bento-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-bento-icon-only {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Bento Grid Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    padding: 0;
    overflow: hidden;
}

.service-bento-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-large:hover .service-bento-image img {
    transform: scale(1.05);
}

.service-bento-content {
    padding: 1.5rem;
    background: white;
}

.service-bento-list {
    list-style: none;
    margin-top: 1rem;
}

.service-bento-list li {
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-bento-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-color);
    font-weight: bold;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-wide {
    grid-column: span 2;
}

.bento-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--teal-color) 100%);
    color: white;
}

.bento-featured h3,
.bento-featured p {
    color: white;
}

.bento-featured p {
    opacity: 0.9;
}

.featured-service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    margin-top: 1rem;
    color: white;
    font-weight: 600;
    opacity: 0.9;
    transition: var(--transition);
}

.service-cta:hover {
    opacity: 1;
}

/* Bento Color Variants */
.bento-coral {
    background: var(--secondary-color);
    color: white;
}

.bento-coral h3, .bento-coral p {
    color: white;
}

.bento-blue {
    background: var(--primary-color);
    color: white;
}

.bento-blue h3, .bento-blue p {
    color: white;
}

.bento-teal {
    background: var(--teal-color);
    color: white;
}

.bento-teal h3 {
    color: white;
}

.bento-peach {
    background: var(--peach-light);
}

.bento-light {
    background: white;
    border: 2px solid var(--border-color);
}

.service-bento-content-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ===== About Section - Dramatic ===== */
.about-dramatic {
    padding: 7rem 0;
    background: var(--cream-bg);
    position: relative;
    overflow: hidden;
}

.about-dramatic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual-dramatic {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    border: 3px solid var(--peach-light);
    border-radius: 24px;
    z-index: -1;
}

.about-stat-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    text-align: center;
}

.stat-card-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    line-height: 1;
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-content-dramatic {
    position: relative;
    z-index: 2;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-features-dramatic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-card-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.feature-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon-new {
    font-size: 1.75rem;
}

.feature-card-new strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-card-new span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== Why Section - Dramatic ===== */
.why-dramatic {
    padding: 7rem 0;
    background: white;
}

.why-dramatic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card-dramatic {
    background: var(--cream-bg);
    padding: 2rem;
    border-radius: 24px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card-dramatic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--peach-light) 0%, transparent 70%);
    border-radius: 0 24px 0 100%;
    opacity: 0.5;
}

.why-card-dramatic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: var(--peach-light);
}

.why-card-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D06A4E 100%);
}

.why-card-highlight::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.why-card-highlight .why-number,
.why-card-highlight h3,
.why-card-highlight p {
    color: white;
}

.why-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--peach-light);
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.why-card-dramatic h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
    position: relative;
    z-index: 1;
}

.why-card-dramatic p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== CTA Section - Dramatic ===== */
.cta-dramatic {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--teal-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    top: -200px;
    left: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    bottom: -150px;
    right: -50px;
    animation: float-shape 25s ease-in-out infinite reverse;
}

.cta-dramatic-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-dramatic-content h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: white;
    margin-bottom: 1rem;
}

.text-white-accent {
    color: var(--peach-light);
}

.cta-dramatic-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.cta-dramatic-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* ===== Application Form Section ===== */
.application {
    background: var(--cream-bg);
}

.application-page {
    min-height: 100vh;
    padding-top: 100px;
}

.application-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}

.back-link:hover {
    background: rgba(13, 79, 139, 0.1);
}

.back-link svg {
    transition: var(--transition);
}

.back-link:hover svg {
    transform: translateX(-3px);
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.application-intro {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.application-intro h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.application-benefits {
    list-style: none;
    padding: 0;
}

.application-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.application-benefits li:last-child {
    border-bottom: none;
}

.application-benefits svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.application-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.requirements-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.requirements-box h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.requirements-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 79, 139, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230D4F8B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(224, 123, 95, 0.3);
}

.btn-submit:hover {
    background: #D06A4E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 123, 95, 0.4);
}

.btn-submit svg {
    transition: var(--transition);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* ===== Contact Section - Dramatic ===== */
.contact-dramatic {
    padding: 7rem 0;
    background: var(--cream-bg);
    position: relative;
    overflow: hidden;
}

.contact-dramatic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-dramatic-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-dramatic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: var(--peach-light);
}

.contact-card-featured {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D06A4E 100%);
}

.contact-card-featured h3,
.contact-card-featured p,
.contact-card-featured .contact-tag {
    color: white;
}

.contact-icon-ring {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-bg);
    border-radius: 20px;
    flex-shrink: 0;
}

.contact-card-featured .contact-icon-ring {
    background: rgba(255,255,255,0.2);
}

.contact-card-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.contact-tag {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--cream-bg);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
}

.contact-card-featured .contact-tag {
    background: rgba(255,255,255,0.2);
}

/* ===== Footer - Dramatic ===== */
.footer-dramatic {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #D06A4E 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-logo-icon span {
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Playfair Display', Georgia, serif;
    color: white;
}

.footer-logo-main span {
    color: var(--secondary-color);
}

.footer-logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.footer-tagline-new {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-new {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-new p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-bottom-new strong {
    color: var(--secondary-color);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-dramatic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 968px) {
    /* Navigation */
    .nav-glass {
        width: calc(100% - 2rem);
        top: 0.5rem;
    }
    
    .nav-glass-inner {
        padding: 0.5rem 1rem;
    }
    
    .nav-center,
    .nav-right {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo-text {
        display: none;
    }
    
    /* Hero */
    .hero-mega-title {
        font-size: 3rem;
    }
    
    .hero-image-circle {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .section-headline {
        font-size: 2.25rem;
    }
    
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-featured,
    .bento-wide {
        grid-column: span 1;
    }
    
    .about-dramatic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content-dramatic {
        order: 2;
    }
    
    .about-visual-dramatic {
        order: 1;
    }
    
    .why-dramatic-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-dramatic-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-dramatic-content h2 {
        font-size: 2rem;
    }
    
    .footer-content-new {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title-new {
        font-size: 2.25rem;
    }
    
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-column: span 1;
    }
    
    .bento-featured,
    .bento-wide {
        grid-column: span 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text-content {
        padding-left: 0;
    }
    
    .about-floating-card {
        right: 1rem;
        bottom: -20px;
    }
    
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-new {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1B4B82 0%, #5B8B8A 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu .nav-link {
        width: 100%;
        justify-content: flex-start;
        color: white;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }

    .nav-menu .nav-link svg {
        stroke: white;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
    }

    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-banner {
        padding: 3rem 2rem;
        border-radius: 16px;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
    }

    .hero-features-badges {
        gap: 1rem;
    }

    .hero-buttons-new {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-get-started,
    .btn-hero-our-services {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .featured-image {
        height: 350px;
    }

    .featured-title {
        font-size: 1.75rem;
    }

    .featured-text {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .application-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .application-intro {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }
    
    .hero-dramatic {
        padding: 100px 0 60px;
    }
    
    .hero-mega-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-action-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-main,
    .btn-hero-call {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .shape-1, .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .shape-3, .shape-4 {
        display: none;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .about-main-img {
        height: 350px;
    }
    
    .about-features-dramatic {
        grid-template-columns: 1fr;
    }
    
    .cta-dramatic-buttons {
        flex-direction: column;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .contact-dramatic-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title-new {
        font-size: 1.75rem;
    }
    
    .about-img-main {
        height: 350px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-new,
    .btn-outline-new {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .logo-img {
        height: 35px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-tagline {
        font-size: 0.55rem;
    }

    .application-form {
        padding: 2rem 1.5rem;
    }
}

/* ===== Accessibility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .hero-buttons,
    .mobile-toggle {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
