/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #1B2A4A;
    --midnight-deep: #131F38;
    --midnight-light: #2A3F6A;
    --mint: #5EEAD4;
    --mint-dark: #3ECDB5;
    --mint-light: #B8F0E8;
    --mint-pale: #E6FBF7;
    --cream: #FAFAF8;
    --warm-white: #F5F4F0;
    --sand: #EDEBE6;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 42, 74, 0.10);
    --shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.14);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.15;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--midnight);
    background: var(--mint-pale);
    border: 1px solid var(--mint-light);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--midnight);
    margin-bottom: 20px;
}

.title-accent {
    color: var(--mint-dark);
    font-style: italic;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--midnight);
    color: #fff;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.3);
}

.btn-primary:hover {
    background: var(--midnight-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.4);
}

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

.btn-outline:hover {
    background: var(--midnight);
    color: #fff;
    transform: translateY(-2px);
}

.btn-mint {
    background: var(--mint);
    color: var(--midnight);
    box-shadow: 0 4px 20px rgba(94, 234, 212, 0.4);
}

.btn-mint:hover {
    background: var(--mint-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--midnight);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 42, 74, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 250, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.nav-logo-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--mint-dark);
    line-height: 1;
}

.nav-logo-word {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight);
    letter-spacing: -0.02em;
}

.nav-logo-accent {
    color: var(--mint-dark);
    font-family: 'DM Serif Display', serif;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: 100px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--midnight);
    background: var(--sand);
}

.nav-cta {
    background: var(--midnight) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--midnight-light) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--midnight);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--sand);
}

/* ========== MOBILE NAV ========== */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(27, 42, 74, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--cream);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active .nav-overlay-inner {
    transform: translateX(0);
}

.nav-overlay-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
    transition: var(--transition);
}

.nav-overlay-link:hover {
    color: var(--midnight);
    padding-left: 8px;
}

.nav-overlay-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 24px;
    background: var(--midnight);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(94, 234, 212, 0.12) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(27, 42, 74, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--midnight);
    background: var(--mint-pale);
    border: 1px solid var(--mint-light);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge svg {
    color: var(--mint-dark);
}

.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--midnight);
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--mint-dark);
    font-style: italic;
}

.headline-highlight {
    position: relative;
}

.headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--mint-light);
    opacity: 0.6;
    z-index: -1;
    border-radius: 4px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--sand);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--midnight);
}

.stat-label, .stat-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-img-main img {
    width: 520px;
    height: 680px;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-img-float img {
    width: 300px;
    height: 220px;
    object-fit: cover;
}

.hero-accent-circle {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.15;
    z-index: 1;
}

.hero-badge-float {
    position: absolute;
    bottom: 80px;
    right: -20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--midnight);
}

.hero-badge-float svg {
    color: #F97316;
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(27, 42, 74, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mint);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--midnight);
    color: var(--mint);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--midnight);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--warm-white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-img-side {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--warm-white);
}

.about-img-side img {
    width: 360px;
    height: 400px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--mint);
    opacity: 0.2;
}

.about-content {
    max-width: 500px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-dark);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 42, 74, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: #fff;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 6 / 9; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(94, 234, 212, 0.15) 0%, transparent 60%),
                       radial-gradient(circle at 20% 50%, rgba(94, 234, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    max-width: 480px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--midnight);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--mint-dark);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
    max-width: 500px;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(27, 42, 74, 0.06);
}

.form-title {
    font-size: 1.6rem;
    color: var(--midnight);
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint-dark);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--mint-dark);
}

.form-success h4 {
    font-size: 1.4rem;
    color: var(--midnight);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--midnight-deep);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-logo-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--mint);
    line-height: 1;
}

.footer-logo-word {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-logo-accent {
    color: var(--mint);
    font-family: 'DM Serif Display', serif;
    font-style: italic;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 260px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mint);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--mint);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-img-main img {
        width: 380px;
        height: 500px;
    }

    .hero-img-float {
        left: -20px;
        bottom: -20px;
    }

    .hero-img-float img {
        width: 220px;
        height: 160px;
    }

    .hero-badge-float {
        right: 0;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-side {
        right: 20px;
        bottom: -30px;
    }

    .about-img-side img {
        width: 260px;
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-img-main img {
        width: 100%;
        height: 420px;
    }

    .hero-img-float {
        display: none;
    }

    .hero-badge-float {
        display: none;
    }

    .services {
        padding: 70px 0;
    }

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

    .service-card {
        padding: 32px 28px;
    }

    .about {
        padding: 70px 0;
    }

    .about-img-main img {
        height: 400px;
    }

    .gallery {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }

    .cta-banner {
        padding: 70px 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
    }
}
