/* =========================================================
   Bodrum Çiçek & Organizasyon - Ana Stil Dosyası
   ========================================================= */

:root {
    --primary: #c8497a;          /* Çiçek pembesi */
    --primary-dark: #a83962;
    --primary-light: #f8dfe9;
    --secondary: #3d6b5c;        /* Yaprak yeşili */
    --secondary-dark: #2c4f44;
    --gold: #c9a76a;
    --cream: #faf5ef;
    --dark: #1f1a22;
    --text: #4a4452;
    --muted: #8a8390;
    --white: #ffffff;
    --bg-soft: #fdf9f6;
    --border: #ece4dc;
    --shadow-sm: 0 2px 12px rgba(31, 26, 34, 0.06);
    --shadow-md: 0 10px 30px rgba(31, 26, 34, 0.08);
    --shadow-lg: 0 20px 60px rgba(31, 26, 34, 0.15);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 22px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--dark);
    font-weight: 600;
    line-height: 1.2;
}

.accent { color: var(--primary); font-style: italic; }
.muted { color: var(--muted); }
.text-center { text-align: center; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; padding: 16px; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(200, 73, 122, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200, 73, 122, 0.4); }

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

.btn-ghost {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-light {
    background: var(--white);
    color: var(--primary);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover { background: #1ea954; transform: translateY(-2px); }

/* ----- Header ----- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    transition: var(--transition);
}
.site-header.scrolled .logo { color: var(--dark); }

.logo-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(200, 73, 122, 0.4);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.logo-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }

.main-nav { display: flex; gap: 6px; align-items: center; }
.main-nav a {
    padding: 8px 16px;
    color: var(--white);
    font-weight: 500;
    font-size: 14.5px;
    position: relative;
    border-radius: 50px;
}
.site-header.scrolled .main-nav a { color: var(--dark); }
.main-nav a:hover { color: var(--primary); }
.main-nav a.active { color: var(--primary); }

.header-actions { display: flex; gap: 12px; align-items: center; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
    display: block; width: 25px; height: 2px; background: var(--white);
    transition: var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--dark); }

/* ----- HERO ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    color: var(--white);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(31,26,34,0.45), rgba(31,26,34,0.55)),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
    0% { transform: scale(1.05) translate(0,0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(31,26,34,0.5) 100%);
}

.hero-content { z-index: 2; max-width: 900px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.hero-badge i { color: var(--primary-light); }

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -1px;
}
.hero h1 .accent { color: var(--primary-light); }

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.92;
    font-weight: 300;
}

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.stat { display: flex; flex-direction: column; }
.stat strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-light);
    font-weight: 600;
    line-height: 1;
}
.stat span { font-size: 13px; opacity: 0.85; margin-top: 6px; letter-spacing: 0.5px; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 20px;
    animation: bounce 2s infinite;
    z-index: 3;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -10px); } }

/* ----- Sections ----- */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 500;
    position: relative;
    padding: 0 30px;
}
.section-label::before, .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--primary);
}
.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-head h2, .section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    font-weight: 500;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ----- About ----- */
.section-about { background: var(--bg-soft); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}
.about-img-main {
    width: 100%;
    height: 540px;
    background:
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
        url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-img-deco {
    position: absolute;
    bottom: 0; right: 0;
    width: 200px; height: 200px;
    background:
        url('https://images.unsplash.com/photo-1455659817273-f96807779a8a?auto=format&fit=crop&w=400&q=80') center/cover no-repeat;
    border-radius: var(--radius);
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}
.about-badge {
    position: absolute;
    top: 30px; left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 2;
}
.about-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
}
.about-badge span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.9; }

.about-text .lead {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 400;
}
.about-text p { margin-bottom: 24px; }

.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-list li i {
    width: 26px; height: 26px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-light), #f5e5da);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.service-card p { color: var(--muted); margin-bottom: 20px; }

.service-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover { gap: 12px; }

/* ----- Portfolio ----- */
.section-portfolio { background: var(--bg-soft); }

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

.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 360px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.portfolio-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.08); }

.portfolio-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,26,34,0.92) 0%, rgba(31,26,34,0.3) 50%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
}

.portfolio-cat {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

.portfolio-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.portfolio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    opacity: 0.92;
    margin-bottom: 6px;
}
.portfolio-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portfolio-desc {
    font-size: 12.5px;
    opacity: 0.85;
    line-height: 1.5;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----- CTA ----- */
.section-cta { padding: 60px 0; }
.cta-box {
    background:
        linear-gradient(135deg, rgba(200, 73, 122, 0.95), rgba(168, 57, 98, 0.95)),
        url('https://images.unsplash.com/photo-1465495976277-4387d4b0e4a6?auto=format&fit=crop&w=1600&q=80') center/cover;
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.cta-box h2 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 20px; }
.cta-box p { max-width: 600px; margin: 0 auto 32px; opacity: 0.95; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Testimonials ----- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 24px;
    font-size: 90px;
    color: var(--primary-light);
    font-family: var(--font-display);
    line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { color: var(--gold); margin-bottom: 16px; }
.testi-msg { font-style: italic; color: var(--dark); margin-bottom: 24px; line-height: 1.7; position: relative; z-index: 1; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 50px; height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
}
.testi-author strong { display: block; font-size: 15px; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--muted); }

/* ----- Contact ----- */
.section-contact { background: var(--bg-soft); }

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

.contact-info .section-label { text-align: left; padding-left: 0; }
.contact-info .section-label::before { display: none; }
.contact-info > p { margin-bottom: 36px; }

.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.info-icon {
    width: 50px; height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.info-item strong { display: block; color: var(--dark); margin-bottom: 4px; }
.info-item span { color: var(--muted); font-size: 14px; }

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--bg-soft);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 73, 122, 0.08);
}
.form-group textarea { resize: vertical; }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: #e6f7ed; color: #1f7340; border-left: 4px solid #1f7340; }
.alert-error { background: #fce4e4; color: #a82636; border-left: 4px solid #a82636; }

/* ----- Footer ----- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.footer-logo i { color: var(--primary); font-size: 24px; }

.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 500;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: var(--primary);
}

.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; font-size: 14px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.contact-list li i { color: var(--primary); margin-top: 4px; }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}
.footer-bottom a { color: var(--primary); }

/* ----- Floating WhatsApp ----- */
.float-whatsapp {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 90;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ----- Lightbox ----- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.lightbox.active { display: flex; }
.lightbox-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 90vh;
    background: #f0f0f0;
}
.lightbox-info {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
.lightbox-cat {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}
.lightbox-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.lightbox-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.lightbox-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lightbox-meta i { color: var(--primary); }
.lightbox-info p {
    color: var(--text);
    line-height: 1.7;
    font-size: 14.5px;
}
.lightbox-close {
    position: absolute;
    top: 18px; right: 28px;
    color: var(--white);
    font-size: 44px;
    cursor: pointer;
    line-height: 0.7;
    z-index: 2;
    transition: 0.2s;
}
.lightbox-close:hover { transform: scale(1.15); color: var(--primary-light); }

@media (max-width: 768px) {
    .lightbox { padding: 20px 14px; }
    .lightbox-inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .lightbox-inner img { max-height: 50vh; }
    .lightbox-info { padding: 22px 20px; }
    .lightbox-info h3 { font-size: 1.5rem; }
    .lightbox-close { top: 8px; right: 16px; font-size: 36px; }
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img { padding: 0; max-width: 500px; margin: 0 auto; }
    .about-img-main { height: 420px; }
    .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0 20px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }
    .main-nav.open { max-height: 500px; padding: 20px; box-shadow: var(--shadow-md); }
    .main-nav a {
        color: var(--dark);
        width: 100%;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }
    .header-actions .btn { display: none; }
    .hero { padding: 100px 0 60px; }
    .hero-stats { gap: 24px; }
    .stat strong { font-size: 2rem; }
    .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 50px 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 22px; }
    .about-badge { left: 0; top: 0; padding: 18px; }
    .about-badge strong { font-size: 1.8rem; }
    .float-whatsapp { width: 54px; height: 54px; font-size: 26px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.3rem; }
    .btn { padding: 12px 22px; font-size: 14px; }
    .container { padding: 0 18px; }
}
