/* =============================================
   AvcTechnical – Corporate Responsive CSS
   ============================================= */

:root {
    --teal: #36ADA3;
    --dark-blue: #1E3A5F;
    --ocean-blue: #468A9A;
    --fresh-blue: #4BB8FA;
    --semi-white: #F4F4F4;
    --gray: #EEEEEE;
    --dark-bg: #0E0E0F;
    --card-bg: #111D2E;
    --card-border: rgba(70,138,154,0.2);
    --text-muted: #7A94A8;
    --border: rgba(70,138,154,0.2);
    --success: #2ECC71;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--semi-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a  { text-decoration: none; }

h1,h2,h3,h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary { background: var(--teal); color:#fff; }
.btn-primary:hover { background: var(--ocean-blue); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(54,173,163,.35); }
.btn-outline  { background: transparent; color: var(--semi-white); border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--fresh-blue); color: var(--fresh-blue); transform: translateY(-3px); }
.btn-secondary { background: rgba(54,173,163,.12); color: var(--teal); border:2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal); color:#fff; transform:translateY(-3px); }

/* ── Header ── */
header {
    background: rgba(14,14,15,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: all .4s ease;
}
header.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,.5); }

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

.logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo-icon { color:var(--teal); font-size:26px; }
.logo-text { font-family:'Playfair Display',serif; font-size:22px; font-weight:900; color:var(--fresh-blue); letter-spacing:1px; }
.logo-text span { color:var(--gray); }

nav { display:flex; align-items:center; gap:30px; }
nav ul { display:flex; list-style:none; gap:30px; }
nav a { color:var(--text-muted); font-weight:600; font-size:15px; position:relative; transition:color .3s ease; }
nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--teal); transition:width .3s ease; }
nav a:hover, nav a.nav-active { color:var(--teal); }
nav a:hover::after, nav a.nav-active::after { width:100%; }

.nav-buttons { display:flex; gap:12px; flex-shrink:0; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; z-index:1100; }
.hamburger span { display:block; width:26px; height:2px; background:var(--teal); border-radius:2px; transition:all .35s ease; transform-origin:center; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.nav-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:900; backdrop-filter:blur(4px); }
.nav-overlay.active { display:block; }

/* ── Hero (index) ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 60px;
    background: radial-gradient(ellipse at 20% 50%,rgba(54,173,163,.08) 0%,transparent 60%),
                radial-gradient(ellipse at 80% 20%,rgba(75,184,250,.06) 0%,transparent 60%),
                linear-gradient(135deg,#080A0E 0%,#0E0E0F 100%);
}

.hero-bg-grid {
    position:absolute; inset:0; pointer-events:none;
    background-image: linear-gradient(rgba(70,138,154,.06) 1px,transparent 1px),
                      linear-gradient(90deg,rgba(70,138,154,.06) 1px,transparent 1px);
    background-size:60px 60px;
}

.hero-inner { display:flex; align-items:center; gap:60px; position:relative; z-index:1; }

.hero-content { flex:1; min-width:0; animation:fadeInUp .9s ease-out both; }

.hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(54,173,163,.12); border:1px solid rgba(54,173,163,.35);
    color:var(--teal); padding:8px 18px; border-radius:50px;
    font-size:13px; font-weight:600; margin-bottom:28px; letter-spacing:.5px;
}
.hero-title { font-size:clamp(36px,5vw,64px); color:var(--semi-white); margin-bottom:22px; }
.hero-title span { color:var(--fresh-blue); }
.hero-text { font-size:16px; color:var(--text-muted); margin-bottom:38px; max-width:540px; line-height:1.8; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }

.hero-stats {
    display:flex; align-items:center; gap:24px; padding:22px 28px;
    background:rgba(255,255,255,.03); border:1px solid var(--border); border-radius:16px;
    width:fit-content;
}
.stat { display:flex; flex-direction:column; gap:2px; }
.stat-num { font-size:26px; font-weight:900; color:var(--teal); font-family:'Playfair Display',serif; }
.stat-label { font-size:11px; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.8px; }
.stat-divider { width:1px; height:40px; background:var(--border); }

.hero-visual {
    position:relative; flex-shrink:0; width:340px; height:340px;
    display:flex; align-items:center; justify-content:center;
    animation:fadeInRight .9s ease-out .2s both;
}
.hero-img-wrapper {
    width:260px; height:260px; border-radius:50%; overflow:hidden;
    border:3px solid rgba(54,173,163,.4); box-shadow:0 0 60px rgba(54,173,163,.2);
    position:relative; z-index:2; background:#162035;
    display:flex; align-items:center; justify-content:center;
}
.hero-img-wrapper img { width:100%; height:100%; object-fit:cover; }
.hero-ring { position:absolute; border-radius:50%; border:1px solid; animation:spin linear infinite; }
.hero-ring--1 { width:310px; height:310px; border-color:rgba(54,173,163,.2); animation-duration:18s; }
.hero-ring--2 { width:340px; height:340px; border-color:rgba(75,184,250,.1); animation-duration:28s; animation-direction:reverse; }

.hero-scroll {
    position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
    display:flex; flex-direction:column; align-items:center; gap:6px;
    color:var(--text-muted); font-size:11px; letter-spacing:1px; text-transform:uppercase;
    animation:bounce 2s ease-in-out infinite; z-index:1;
}

/* ── Page Hero (iletisim) ── */
.page-hero {
    min-height: 260px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 60%,rgba(54,173,163,.1) 0%,transparent 55%),
                linear-gradient(135deg,#080A0E 0%,#0E0E0F 100%);
    border-bottom: 1px solid var(--border);
}
.page-hero-inner { position:relative; z-index:1; text-align:center; }
.page-hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(54,173,163,.12); border:1px solid rgba(54,173,163,.3);
    color:var(--teal); padding:7px 18px; border-radius:50px;
    font-size:13px; font-weight:600; margin-bottom:16px; letter-spacing:.5px;
}
.page-hero-title { font-size:clamp(36px,5vw,58px); color:var(--semi-white); margin-bottom:14px; }
.page-hero-desc { color:var(--text-muted); font-size:16px; max-width:500px; margin:0 auto; }

/* ── Products ── */
.products {
    padding:100px 0;
    background:linear-gradient(180deg,#0E0E0F 0%,#111822 100%);
    border-top:1px solid var(--border);
}

.section-header { text-align:center; max-width:650px; margin:0 auto 70px; }
.section-badge {
    display:inline-block; background:rgba(54,173,163,.12); border:1px solid rgba(54,173,163,.3);
    color:var(--teal); padding:6px 18px; border-radius:50px; font-size:13px;
    font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:16px;
}
.section-title { font-size:clamp(28px,4vw,44px); color:var(--semi-white); margin-bottom:14px; display:inline-block; }
.section-title::after {
    content:''; display:block; width:60px; height:3px;
    background:linear-gradient(90deg,var(--teal),var(--fresh-blue));
    border-radius:2px; margin:12px auto 0;
}
.section-desc { font-size:16px; color:var(--text-muted); margin-top:18px; }

/* Animated title */
.animated-title { overflow:visible; }
.title-word {
    display:inline-block;
    opacity:0;
    transform:translateY(30px);
    animation:wordReveal .6s cubic-bezier(.22,1,.36,1) forwards;
}
.title-word:nth-child(1) { animation-delay:.1s; margin-right:.3em; }
.title-word:nth-child(2) { animation-delay:.3s; }

@keyframes wordReveal {
    to { opacity:1; transform:translateY(0); }
}

/* Shimmer underline on animated title */
.animated-title::after {
    content:'';
    display:block;
    height:3px;
    width:0;
    border-radius:2px;
    background:linear-gradient(90deg,var(--teal),var(--fresh-blue),var(--teal));
    background-size:200% 100%;
    margin:12px auto 0;
    animation:titleUnderline 1s ease .7s forwards, shimmer 2s linear 1.7s infinite;
}
@keyframes titleUnderline { to { width:80px; } }
@keyframes shimmer { 0%{background-position:0 0} 100%{background-position:200% 0} }

.product-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;
    align-items:stretch;
}
.product-card {
    background:var(--card-bg); border-radius:20px; overflow:hidden;
    border:1px solid var(--card-border);
    transition:transform .4s ease,box-shadow .4s ease,border-color .4s ease;
    display:flex; flex-direction:column;
}
.product-card:hover { transform:translateY(-10px); box-shadow:0 20px 50px rgba(54,173,163,.15); border-color:var(--teal); }
.product-img { height:220px; overflow:hidden; position:relative; flex-shrink:0; }
.product-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.product-card:hover .product-img img { transform:scale(1.07); }
.product-tag {
    position:absolute; top:14px; left:14px;
    background:var(--teal); color:#fff; padding:5px 14px;
    border-radius:50px; font-weight:700; font-size:11px; letter-spacing:.8px; text-transform:uppercase;
}
.product-info { padding:24px; display:flex; flex-direction:column; flex:1; }
.product-title { font-size:20px; color:var(--semi-white); margin-bottom:10px; }
.product-desc { color:var(--text-muted); margin-bottom:20px; font-size:14px; line-height:1.7; flex:1; }
.product-footer { display:flex; flex-direction:column; gap:10px; align-items:stretch; padding-top:16px; border-top:1px solid var(--border); margin-top:auto; }
.detail-btn {
    display:flex; align-items:center; justify-content:center; gap:9px;
    width:100%; padding:12px 24px; border-radius:12px;
    background:transparent; border:1px solid var(--card-border);
    color:var(--text-muted); font-family:'Montserrat',sans-serif;
    font-size:14px; font-weight:700; letter-spacing:.3px; text-decoration:none;
    transition:border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
}
.detail-btn:hover { border-color:var(--teal); color:var(--teal); background:rgba(54,173,163,.08); transform:translateY(-2px); }
.detail-btn i { font-size:14px; }

/* ── Price CTA Button ── */
.price-btn {
    display:flex; align-items:center; justify-content:center; gap:10px;
    width:100%;
    background:linear-gradient(135deg, #25D366 0%, #1abe55 100%);
    color:#fff; font-family:'Montserrat',sans-serif;
    font-size:14px; font-weight:700; padding:13px 24px;
    border-radius:12px; text-decoration:none;
    box-shadow:0 4px 18px rgba(37,211,102,.2);
    transition:transform .3s ease, box-shadow .3s ease, filter .3s ease;
    position:relative; overflow:hidden;
    letter-spacing:.3px;
}
.price-btn::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 55%);
    opacity:0; transition:opacity .3s ease;
}
.price-btn:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(37,211,102,.35); filter:brightness(1.08); }
.price-btn:hover::before { opacity:1; }
.price-btn:active { transform:translateY(0); box-shadow:0 4px 12px rgba(37,211,102,.2); }
.price-btn .fa-whatsapp { font-size:18px; animation:waPulse 2.5s ease-in-out infinite; flex-shrink:0; }
.price-btn .price-arrow { font-size:12px; transition:transform .3s ease; margin-left:auto; flex-shrink:0; opacity:.8; }
.price-btn:hover .price-arrow { transform:translateX(5px); opacity:1; }
@keyframes waPulse {
    0%,100% { transform:scale(1); }
    50%      { transform:scale(1.18); }
}

/* ── Address Section ── */
.address-section {
    padding:100px 0;
    background:#0E0E0F;
    border-top:1px solid var(--border);
    scroll-margin-top:90px;
}
.address-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:50px; align-items:start; }
.address-info { display:flex; flex-direction:column; gap:28px; }
.address-item { display:flex; gap:18px; align-items:flex-start; }
.address-icon {
    width:46px; height:46px; border-radius:12px; background:rgba(54,173,163,.12);
    border:1px solid rgba(54,173,163,.3); display:flex; align-items:center; justify-content:center;
    color:var(--teal); font-size:18px; flex-shrink:0;
}
.address-item strong { display:block; font-size:14px; color:var(--semi-white); margin-bottom:4px; font-family:'Montserrat',sans-serif; }
.address-item p, .address-item a { font-size:15px; color:var(--text-muted); }
.address-item a:hover { color:var(--teal); }
.map-wrapper { border-radius:20px; overflow:hidden; border:1px solid var(--border); box-shadow:0 10px 40px rgba(0,0,0,.4); }

/* ── Contact Page ── */
.contact-section { padding:80px 0 100px; }
.contact-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:50px; align-items:start; }

.contact-form-card {
    background:var(--card-bg); border:1px solid var(--border); border-radius:24px; padding:40px;
}
.form-title { font-size:28px; color:var(--semi-white); margin-bottom:8px; }
.form-sub { font-size:14px; color:var(--text-muted); margin-bottom:32px; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.form-group label { font-size:13px; font-weight:700; color:var(--semi-white); letter-spacing:.3px; }
.input-wrapper { position:relative; }
.input-wrapper i {
    position:absolute; left:14px; top:50%; transform:translateY(-50%);
    color:var(--text-muted); font-size:14px; pointer-events:none; z-index:1;
}
.textarea-wrapper i { top:16px; transform:none; }
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width:100%; padding:12px 14px 12px 40px;
    background:rgba(255,255,255,.04); border:1px solid var(--border);
    border-radius:10px; color:var(--semi-white); font-family:'Montserrat',sans-serif;
    font-size:14px; transition:border-color .3s ease, box-shadow .3s ease;
    -webkit-appearance:none; appearance:none;
}
.input-wrapper textarea { resize:vertical; min-height:130px; padding-top:14px; }
.input-wrapper select option { background:#111D2E; color:var(--semi-white); }
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(54,173,163,.15);
}
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder { color:var(--text-muted); }
.form-submit { width:100%; justify-content:center; padding:14px; font-size:16px; margin-top:4px; }

.form-success {
    display:none; align-items:center; gap:12px;
    background:rgba(46,204,113,.1); border:1px solid rgba(46,204,113,.35);
    color:var(--success); padding:16px 20px; border-radius:12px;
    margin-top:16px; font-size:14px; font-weight:600;
}
.form-success.show { display:flex; }

/* Contact info column */
.contact-info-col { display:flex; flex-direction:column; gap:0; }
.contact-cards { display:flex; flex-direction:column; gap:14px; margin-top:32px; margin-bottom:28px; }

.contact-card {
    display:flex; align-items:center; gap:16px;
    background:var(--card-bg); border:1px solid var(--border); border-radius:16px; padding:18px 20px;
    transition:all .3s ease; text-decoration:none;
}
.contact-card:hover { border-color:var(--teal); transform:translateX(6px); box-shadow:0 8px 30px rgba(54,173,163,.12); }

.contact-card-icon {
    width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center;
    font-size:20px; flex-shrink:0;
}
.phone-icon    { background:rgba(54,173,163,.15);  color:var(--teal); }
.whatsapp-icon { background:rgba(37,211,102,.15);  color:#25D366; }
.gmail-icon    { background:rgba(234,67,53,.15);   color:#EA4335; }
.facebook-icon { background:rgba(24,119,242,.15);  color:#1877F2; }

.contact-card-body { flex:1; min-width:0; }
.contact-card-body strong { display:block; font-size:14px; color:var(--semi-white); margin-bottom:2px; }
.contact-card-body span { display:block; font-size:13px; color:var(--teal); font-weight:600; margin-bottom:2px; word-break:break-all; }
.contact-card-body small { font-size:11px; color:var(--text-muted); }
.contact-card-arrow { color:var(--border); transition:color .3s ease; }
.contact-card:hover .contact-card-arrow { color:var(--teal); }

/* Working hours */
.working-hours {
    background:rgba(255,255,255,.03); border:1px solid var(--border); border-radius:16px; padding:22px 24px;
}
.wh-header { display:flex; align-items:center; gap:10px; color:var(--teal); font-size:14px; font-weight:700; margin-bottom:18px; }
.wh-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.05); font-size:13px; color:var(--text-muted); }
.wh-row:last-child { border-bottom:none; }
.wh-time { color:var(--semi-white); font-weight:600; }
.wh-closed { color:#e74c3c; font-weight:700; font-size:12px; }

/* ── Footer ── */
footer {
    background:#060810; color:var(--semi-white);
    padding:70px 0 30px; border-top:1px solid var(--border);
}
.footer-content {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:50px; margin-bottom:50px;
}
.footer-logo { display:flex; align-items:center; gap:10px; font-family:'Playfair Display',serif; font-size:20px; font-weight:900; color:var(--fresh-blue); margin-bottom:16px; }
.footer-logo i { color:var(--teal); font-size:22px; }
.footer-about { color:var(--text-muted); font-size:14px; line-height:1.8; margin-bottom:22px; }
.footer-column h3 { font-size:17px; margin-bottom:22px; color:var(--semi-white); position:relative; padding-bottom:12px; }
.footer-column h3::after { content:''; position:absolute; bottom:0; left:0; width:36px; height:2px; background:var(--teal); border-radius:2px; }

.footer-links { list-style:none; }
.footer-links li { margin-bottom:12px; }
.footer-links a {
    color:var(--text-muted); text-decoration:none; font-size:14px;
    display:inline-flex; align-items:center; gap:8px; transition:all .25s ease;
}
.footer-links a i { font-size:10px; color:var(--teal); }
.footer-links a:hover { color:var(--teal); padding-left:4px; }

.contact-list li { display:flex; align-items:flex-start; gap:12px; color:var(--text-muted); font-size:14px; margin-bottom:14px; }
.contact-list li i { color:var(--teal); margin-top:3px; flex-shrink:0; font-size:14px; }
.contact-list li a { color:var(--text-muted); transition:color .25s; }
.contact-list li a:hover { color:var(--teal); }

.social-links { display:flex; gap:12px; }
.social-links a {
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; background:rgba(255,255,255,.05);
    border:1px solid var(--border); border-radius:50%;
    color:var(--text-muted); font-size:16px; transition:all .3s ease;
}
.social-links a:hover { background:var(--teal); border-color:var(--teal); color:#fff; transform:translateY(-3px); }

.copyright {
    text-align:center; padding-top:30px; border-top:1px solid var(--border);
    color:var(--text-muted); font-size:14px;
    display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap;
}
.copyright-sep { opacity:.3; }

/* ── Fade-in (injected by JS) ── */
.fade-in { opacity:0; transform:translateY(28px); transition:opacity .6s ease,transform .6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ── Animations ── */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes spin        { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes bounce      { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */

/* ── Tablet ≤ 960px ── */
@media (max-width:960px) {
    /* Mobile nav */
    .hamburger { display:flex; }
    nav {
        position:fixed; top:0; right:-100%; width:min(320px,85vw); height:100vh;
        background:#0E0E0F; border-left:1px solid var(--border);
        flex-direction:column; align-items:flex-start; justify-content:center;
        padding:80px 36px 40px; gap:36px;
        transition:right .4s cubic-bezier(.4,0,.2,1); z-index:1000;
    }
    nav.open { right:0; }
    nav ul { flex-direction:column; gap:24px; width:100%; }
    nav a { font-size:18px; color:var(--semi-white); }
    .nav-buttons { flex-direction:column; width:100%; gap:12px; }
    .nav-buttons .btn { width:100%; justify-content:center; }

    /* Hero */
    .hero-inner { flex-direction:column; text-align:center; gap:40px; }
    .hero-content { order:2; }
    .hero-visual { order:1; width:240px; height:240px; }
    .hero-img-wrapper { width:190px; height:190px; }
    .hero-ring--1 { width:220px; height:220px; }
    .hero-ring--2 { width:242px; height:242px; }
    .hero-badge { margin:0 auto 22px; }
    .hero-text { margin:0 auto 38px; }
    .hero-buttons { justify-content:center; }
    .hero-stats { margin:0 auto; flex-wrap:wrap; justify-content:center; gap:20px; }
    .stat-divider { display:none; }

    /* Address */
    .address-grid { grid-template-columns:1fr; }
    .map-wrapper iframe { height:320px; }

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

    /* Products */
    .products { padding:70px 0; }
    .product-grid { grid-template-columns:1fr; max-width:500px; margin:0 auto; }

    /* Page hero (iletisim etc.) */
    .page-hero { min-height: 220px; }
    .page-hero-title { font-size: clamp(28px, 5vw, 44px); }

    /* Footer */
    .footer-content { gap:36px; }
}

/* ── Mobile ≤ 600px ── */
@media (max-width:600px) {
    .hero { padding-top:80px; padding-bottom:80px; }
    .hero-title { font-size:32px; }
    .hero-text { font-size:14px; }
    .hero-buttons { flex-direction:column; align-items:center; }
    .hero-buttons .btn { width:100%; justify-content:center; }
    .hero-stats { width:100%; padding:18px 16px; gap:16px; }
    .stat-num { font-size:22px; }

    .address-section, .products { padding:60px 0; }
    .section-header { margin-bottom:50px; }

    footer { padding:50px 0 24px; }
    .footer-content { gap:36px; }
    .copyright { flex-direction:column; gap:6px; }
    .copyright-sep { display:none; }

    .contact-form-card { padding:28px 22px; }
    .form-row { grid-template-columns:1fr; }

    .page-hero { padding-top:90px; padding-bottom:40px; }
}

/* ── Very small ≤ 380px ── */
@media (max-width:380px) {
    .logo-text { font-size:18px; }
    .hero-visual { width:190px; height:190px; }
    .hero-img-wrapper { width:150px; height:150px; }
    .hero-ring--1 { width:175px; height:175px; }
    .hero-ring--2 { width:192px; height:192px; }
    .contact-card-body span { font-size:12px; }
    .btn { padding:10px 20px; font-size:14px; }
    .page-hero-title { font-size:28px; }
    .page-hero-desc { font-size:14px; }
    .address-item { gap:12px; }
    .address-icon { width:38px; height:38px; font-size:15px; }
}
