/*
Theme Name: Дениска
Description: Премиум тема для детского сада Дениска
Version: 2.0
Author: Дениска
Text Domain: deniska
*/

/* ═══ VARIABLES ═══ */
:root {
  /* Основные цвета из букв Дениска */
  --yellow:  #FFD54F;
  --orange:  #FF7043;
  --blue:    #4FC3F7;
  --teal:    #4DD0E1;
  --green:   #66BB6A;
  --red:     #FF7043;
  --lime:    #4FC3F7;
  --purple:  #7C83D4;
  --pink:    #FF8A80;

  /* Фоновые тона — светлые */
  --cream:  #F0F6FF;
  --warm:   #E8F4FF;
  --sand:   #DFF0FF;
  --wall:   #F0F6FF;

  /* Тёмные — синие */
  --dark:   #1A2A4A;
  --dark2:  #243660;
  --dark3:  #2E4A80;

  /* Акцент */
  --gold:   #FFD54F;
  --gold2:  #FFE082;
  --white:  #FFFFFF;
  --muted:  #5A7090;
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
section[id] { scroll-margin-top: 90px; }
body { font-family:'Baloo 2',sans-serif; background:var(--wall); color:var(--dark); overflow-x:hidden; line-height:1.6; -webkit-text-size-adjust:100%; font-style:normal; }
*, *::before, *::after { font-style:normal !important; }
.btn, .btn-ghost-white, .gtab, .social-btn, .nav-cta-btn, a, button, span, p, div, h1, h2, h3, h4, h5, h6 { font-style:normal !important; }
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }

.container { max-width:1200px; margin:0 auto; padding:0 40px; }
section { padding:100px 0; }

/* ═══ RAINBOW BAR ═══ */
.rainbow-bar { height:6px; border:none; background:linear-gradient(90deg,var(--red),var(--orange),var(--yellow),var(--green),var(--blue),var(--purple),var(--pink)); margin:0; }

/* ═══ TYPOGRAPHY ═══ */
.section-label { display:inline-block; font-size:11px; font-weight:800; letter-spacing:3px; text-transform:uppercase; margin-bottom:14px; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(28px,4.5vw,52px); font-weight:900; line-height:1.1; margin-bottom:18px; }
.section-desc  { font-size:17px; color:var(--muted); font-weight:600; line-height:1.65; max-width:560px; }

/* ═══ BUTTONS ═══ */
.btn { display:inline-block; padding:16px 42px; border-radius:50px; font-size:16px; font-weight:800; cursor:pointer; transition:transform .25s, box-shadow .25s; border:none; font-family:'Baloo 2',sans-serif; }
.btn:hover { transform:translateY(-3px); }
.btn-primary { background:linear-gradient(135deg,#FF7043,#E8340A); color:#fff; box-shadow:0 8px 28px rgba(255,112,67,.4); }
.btn-primary:hover { box-shadow:0 14px 38px rgba(255,112,67,.55); color:#fff; }
.btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color:#fff; background:rgba(255,255,255,.1); color:#fff; }
.btn-gold { background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#5A3E00; box-shadow:0 6px 20px rgba(212,175,55,.35); }
.btn-white { background:#fff; color:#4DD0E1; box-shadow:0 8px 28px rgba(0,0,0,.15); }
.btn-white:hover { box-shadow:0 14px 40px rgba(0,0,0,.2); color:#4DD0E1; }
.btn-block { display:block; width:100%; text-align:center; }
.btn-ghost-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.3); padding:14px; border-radius:50px; font-size:14px; font-weight:800; cursor:pointer; transition:all .25s; font-family:'Baloo 2',sans-serif; }
.btn-ghost-white:hover { border-color:#fff; background:rgba(255,255,255,.1); }

/* ═══ REVEAL ANIMATION ═══ */
.reveal { opacity:1; transform:none; transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ═══════════════════════════════
   HEADER / NAV
═══════════════════════════════ */
#site-header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(240,246,255,.97);
  backdrop-filter:blur(14px);
  border-bottom:4px solid transparent;
  border-image:linear-gradient(90deg,var(--red),var(--orange),var(--yellow),var(--green),var(--blue),var(--teal),var(--lime)) 1;
  box-shadow:0 4px 30px rgba(26,42,74,.1);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; height:72px; padding:0 40px; max-width:1400px; margin:0 auto; }

.site-logo { display:flex; align-items:center; text-decoration:none; }
.site-logo img { height:44px; width:auto; }

#main-nav ul { display:flex; align-items:center; gap:26px; }
#main-nav a { font-size:14px; font-weight:700; color:var(--dark); position:relative; transition:color .25s; }
#main-nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:3px; border-radius:2px; background:linear-gradient(90deg,var(--orange),var(--yellow)); transition:width .3s; }
#main-nav a:hover { color:#FF7043; }
#main-nav a:hover::after { width:100%; }
.nav-cta-btn { background:linear-gradient(135deg,#FF7043,#E8340A) !important; color:#fff !important; padding:10px 26px !important; border-radius:50px !important; box-shadow:0 4px 16px rgba(255,112,67,.4); transition:transform .2s, box-shadow .2s !important; }
.nav-cta-btn::after { display:none !important; }
.nav-cta-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(255,112,67,.55) !important; }

/* Burger */
.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:6px; }
.burger span { display:block; width:26px; height:3px; background:#1A2A4A; border-radius:2px; transition:all .3s; }
.burger.open span:nth-child(1){transform:rotate(45deg) translate(5px,6px);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-6px);}

/* Mobile menu */
.mobile-menu { display:none; position:fixed; inset:0; background:#1A2A4A; z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:28px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:28px; font-weight:800; color:#fff; transition:color .2s; }
.mobile-menu a:hover { color:var(--gold); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height:100vh; padding:110px 24px 80px;
  background:linear-gradient(145deg,#1A2A4A 0%,#243660 50%,#1A3A7A 100%);
  display:flex; align-items:flex-start; justify-content:center;
  text-align:center; position:relative; overflow:hidden; box-sizing:border-box;
}
.hero-bubbles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.bubble { position:absolute; border-radius:50%; opacity:.1; animation:bubbleRise linear infinite; }
@keyframes bubbleRise {
  0%   { transform:translateY(110vh) scale(.4); opacity:0; }
  8%   { opacity:.1; }
  92%  { opacity:.1; }
  100% { transform:translateY(-20vh) scale(1.2); opacity:0; }
}
.bubble:nth-child(1){width:80px; height:80px; background:#FFD54F; left:8%;  animation-duration:13s; animation-delay:0s;}
.bubble:nth-child(2){width:55px; height:55px; background:#4FC3F7; left:22%; animation-duration:16s; animation-delay:2s;}
.bubble:nth-child(3){width:100px;height:100px;background:#FF7043; left:38%; animation-duration:11s; animation-delay:4s;}
.bubble:nth-child(4){width:48px; height:48px; background:#4DD0E1; left:54%; animation-duration:19s; animation-delay:1s;}
.bubble:nth-child(5){width:88px; height:88px; background:#FFD54F; left:68%; animation-duration:14s; animation-delay:3s;}
.bubble:nth-child(6){width:66px; height:66px; background:#4FC3F7; left:83%; animation-duration:17s; animation-delay:5s;}
.bubble:nth-child(7){width:52px; height:52px; background:#FF7043; left:4%;  animation-duration:15s; animation-delay:7s;}
.bubble:nth-child(8){width:115px;height:115px;background:#4DD0E1; left:58%; animation-duration:12s; animation-delay:9s;}

.hero-content { position:relative; z-index:2; max-width:900px; padding:0 24px; }
.hero-badge { display:inline-block; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.8); font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; padding:8px 26px; border-radius:50px; margin-bottom:28px; }
.hero-title { font-family:'Baloo 2',sans-serif; font-size:clamp(52px,9vw,110px); font-weight:800; line-height:1; margin-bottom:12px; font-style:normal; }
.hero-title .line1 { color:#FFFFFF; display:block; font-size:clamp(40px,7vw,90px); margin-bottom:4px; font-style:normal; }
.hero-title .deniska-word { display:block; font-size:clamp(68px,12vw,152px); font-style:normal; }
.hero-title .deniska-word .dn-D { color:#FFD54F; }
.hero-title .deniska-word .dn-e { color:#FF7043; }
.hero-title .deniska-word .dn-n { color:#4FC3F7; }
.hero-title .deniska-word .dn-i { color:#4DD0E1; }
.hero-title .deniska-word .dn-s { color:#FFD54F; }
.hero-title .deniska-word .dn-k { color:#FF7043; }
.hero-title .deniska-word .dn-a { color:#4FC3F7; }
.hero-sub { font-size:clamp(15px,2.3vw,20px); color:rgba(255,255,255,.6); margin:24px 0 48px; font-weight:500; line-height:1.6; }
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.hero-stats { display:flex; gap:52px; justify-content:center; margin-top:64px; padding-top:40px; border-top:1px solid rgba(255,255,255,.1); flex-wrap:wrap; }
.stat-item { text-align:center; max-width:120px; }
.stat-num { font-family:'Baloo 2',sans-serif; font-size:44px; font-weight:800; color:#FFD54F; line-height:1; display:block; }
.stat-label { font-size:13px; color:rgba(255,255,255,.7); font-weight:600; letter-spacing:0; text-transform:none; margin-top:6px; display:block; line-height:1.4; }

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-top:60px; }
.about-img-wrap { position:relative; border-radius:28px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.12); }
.about-img-wrap img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.about-img-badge { position:absolute; bottom:24px; left:24px; background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#5A3E00; padding:10px 20px; border-radius:50px; font-size:13px; font-weight:900; }
.about-text h3 { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; margin-bottom:16px; line-height:1.2; }
.about-text p  { color:#666; font-size:16px; line-height:1.7; font-weight:600; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:32px; }
.feat-card { background:var(--wall); border-radius:20px; padding:22px; border:2px solid transparent; transition:transform .3s; }
.feat-card:hover { transform:translateY(-4px); }
.feat-card:nth-child(1){border-color:rgba(255,112,67,.4);}
.feat-card:nth-child(2){border-color:rgba(79,195,247,.4);}
.feat-card:nth-child(3){border-color:rgba(124,184,122,.4);}
.feat-card:nth-child(4){border-color:rgba(242,201,76,.4);}
.feat-icon  { font-size:32px; margin-bottom:8px; display:block; }
.feat-title { font-size:15px; font-weight:800; margin-bottom:4px; }
.feat-text  { font-size:13px; color:var(--muted); font-weight:600; line-height:1.5; }

/* ═══════════════════════════════
   CLASSES
═══════════════════════════════ */
#classes { background:linear-gradient(145deg,#1A2A4A,#243660); }
#classes .section-title { color:#fff; }
#classes .section-label { color:#FFD54F; }
#classes .section-desc  { color:rgba(255,255,255,.6); }
.classes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:60px; }
.class-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15); border-radius:28px; overflow:hidden; transition:transform .3s, background .3s; cursor:pointer; position:relative; }
.class-card::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; z-index:1; }
.class-card:nth-child(1)::before{background:linear-gradient(90deg,var(--red),var(--orange));}
.class-card:nth-child(2)::before{background:linear-gradient(90deg,var(--blue),var(--teal));}
.class-card:nth-child(3)::before{background:linear-gradient(90deg,var(--green),var(--lime));}
.class-card:hover { transform:translateY(-8px); background:rgba(255,255,255,.12); }
.class-gallery { display:grid; grid-template-columns:1fr 1fr; gap:4px; }
.class-gallery img { width:100%; object-fit:cover; }
.class-gallery img:first-child { grid-column:1/-1; height:180px; }
.class-gallery img:not(:first-child) { height:100px; }
.class-thumb { cursor:pointer; transition:transform .3s, filter .3s; }
.class-thumb:hover { transform:scale(1.04); filter:brightness(1.1); }
.class-body { padding:24px 28px 32px; }
.class-age { display:inline-block; padding:5px 14px; border-radius:50px; font-size:11px; font-weight:800; letter-spacing:1px; margin-bottom:14px; }
.class-card:nth-child(1) .class-age{background:rgba(217,79,79,.25);  color:#FF9A9A;}
.class-card:nth-child(2) .class-age{background:rgba(91,168,196,.25); color:#A8DCEA;}
.class-card:nth-child(3) .class-age{background:rgba(124,184,122,.25);color:#B0E4AE;}
.class-title { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:#fff; margin-bottom:12px; }
.class-desc  { font-size:14px; color:rgba(255,255,255,.5); line-height:1.7; font-weight:600; }
.class-list  { margin-top:20px; }
.class-list li { font-size:13px; color:rgba(255,255,255,.65); padding:6px 0; font-weight:600; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(255,255,255,.06); }
.class-list li::before { content:'✦'; font-size:9px; color:var(--gold); flex-shrink:0; }

/* ═══════════════════════════════
   HALL
═══════════════════════════════ */
#hall { background:var(--warm); }
.hall-grid { display:grid; grid-template-columns:1fr 1fr; gap:36px; margin-top:60px; align-items:start; }

/* Slider */
.hall-slider { border-radius:28px; overflow:hidden; position:relative; box-shadow:0 16px 50px rgba(0,0,0,.12); background:#1a1a2e; }
.hall-slider-track { display:flex; transition:transform .5s ease; }
.hall-slide { min-width:100%; flex-shrink:0; }
.hall-slide img { width:100%; height:320px; object-fit:cover; display:block; }
.slider-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.92); border:none; width:44px; height:44px; border-radius:50%; font-size:20px; cursor:pointer; box-shadow:0 4px 16px rgba(0,0,0,.2); z-index:2; display:flex; align-items:center; justify-content:center; transition:background .2s; line-height:1; }
.slider-btn:hover { background:#fff; }
.slider-prev { left:14px; }
.slider-next { right:14px; }
.slider-dots { position:absolute; bottom:12px; left:50%; transform:translateX(-50%); display:flex; gap:6px; }
.slider-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.45); cursor:pointer; transition:background .2s; border:none; }
.slider-dot.active { background:#fff; }

/* Events */
.events-box { background:var(--white); border-radius:28px; padding:36px; box-shadow:0 6px 30px rgba(0,0,0,.06); }
.events-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; margin-bottom:4px; }
.events-sub { font-size:13px; color:var(--muted); font-weight:600; margin-bottom:20px; }
.event-item { display:flex; gap:18px; padding:14px 0; border-bottom:1px solid #f0f0f0; align-items:flex-start; }
.event-item:last-child { border-bottom:none; padding-bottom:0; }
.event-date-box { background:linear-gradient(135deg,#FF7043,#E8340A); color:#fff; border-radius:14px; padding:10px 12px; text-align:center; min-width:54px; font-weight:900; font-size:22px; line-height:1; flex-shrink:0; }
.event-month { font-size:9px; font-weight:800; letter-spacing:1px; text-transform:uppercase; opacity:.85; display:block; margin-top:2px; }
.event-info h4 { font-size:16px; font-weight:800; margin-bottom:3px; color:var(--dark); }
.event-info p  { font-size:12px; color:var(--muted); font-weight:600; }

/* ═══════════════════════════════
   INFO (О садике)
═══════════════════════════════ */
#info { background:var(--white); }
.info-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:60px; }
.info-card { border-radius:24px; padding:36px 26px; text-align:center; transition:transform .3s; }
.info-card:hover { transform:translateY(-6px); }
.info-card:nth-child(1){background:linear-gradient(145deg,#FFF3E0,#FFE0CC);}
.info-card:nth-child(2){background:linear-gradient(145deg,#E3F2FD,#BBDEFB);}
.info-card:nth-child(3){background:linear-gradient(145deg,#E8F5E9,#C8E6C9);}
.info-card:nth-child(4){background:linear-gradient(145deg,#FFFDE7,#FFF9C4);}
.info-icon { font-size:48px; display:block; margin-bottom:16px; }
.info-card-title { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; margin-bottom:10px; }
.info-card:nth-child(1) .info-card-title{color:#FF7043;}
.info-card:nth-child(2) .info-card-title{color:#4DD0E1;}
.info-card:nth-child(3) .info-card-title{color:#66BB6A;}
.info-card:nth-child(4) .info-card-title{color:#B8860B;}
.info-card-text { font-size:14px; color:#6A6050; font-weight:600; line-height:1.65; }

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
#gallery { background:#1A2A4A; }
#gallery .section-title { color:#fff; }
#gallery .section-label { color:#FFD54F; }
.gallery-tabs { display:flex; gap:10px; margin-top:32px; flex-wrap:wrap; }
.gtab { padding:8px 20px; border-radius:50px; font-size:13px; font-weight:800; cursor:pointer; border:2px solid rgba(255,255,255,.2); color:rgba(255,255,255,.6); background:transparent; transition:all .25s; font-family:'Baloo 2',sans-serif; }
.gtab.active,.gtab:hover { border-color:#FFD54F; color:#FFD54F; background:rgba(242,201,76,.12); }
.gallery-grid { columns:4; column-gap:12px; margin-top:24px; }
.gallery-item { break-inside:avoid; margin-bottom:12px; border-radius:14px; overflow:hidden; cursor:pointer; position:relative; display:block; }
.gallery-item img { width:100%; display:block; transition:transform .4s; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-overlay { position:absolute; inset:0; background:rgba(0,0,0,.4); opacity:0; transition:opacity .3s; display:flex; align-items:center; justify-content:center; font-size:28px; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-item[data-cat] { transition:opacity .3s, transform .3s; }
.gallery-item.hidden { display:none; }

/* Lightbox */
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,.93); z-index:9999; align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lightbox-img { max-width:90vw; max-height:90vh; border-radius:12px; object-fit:contain; }
.lb-close { position:absolute; top:20px; right:28px; color:#fff; font-size:40px; cursor:pointer; background:none; border:none; line-height:1; opacity:.7; transition:opacity .2s; }
.lb-close:hover { opacity:1; }
.lb-arrow { position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:48px; cursor:pointer; background:rgba(255,255,255,.1); border:none; width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.lb-arrow:hover { background:rgba(255,255,255,.2); }
.lb-prev { left:20px; }
.lb-next { right:20px; }

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
#pricing { background:linear-gradient(145deg,#1A2A4A,#243660); }
#pricing .section-title { color:#fff; }
#pricing .section-label { color:#FFD54F; }
#pricing .section-desc  { color:rgba(255,255,255,.6); margin:0 auto; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:60px; max-width:1000px; margin-left:auto; margin-right:auto; }
.price-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:28px; padding:44px 32px; text-align:center; position:relative; transition:transform .3s; }
.price-card:hover { transform:translateY(-6px); }
.price-card.featured { background:linear-gradient(145deg,rgba(242,201,76,.18),rgba(242,201,76,.06)); border-color:rgba(242,201,76,.5); transform:scale(1.04); }
.price-card.featured:hover { transform:scale(1.04) translateY(-6px); }
.price-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,var(--gold),var(--gold2)); color:#5A3E00; font-size:10px; font-weight:900; letter-spacing:2px; text-transform:uppercase; padding:5px 18px; border-radius:50px; white-space:nowrap; }
.price-name   { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:#fff; margin-bottom:8px; }
.price-amount { font-family:'Playfair Display',serif; font-size:48px; font-weight:900; color:#fff; line-height:1; margin:20px 0 4px; }
.price-period { font-size:12px; color:rgba(255,255,255,.38); font-weight:700; margin-bottom:28px; }
.price-feats  { text-align:left; margin-bottom:30px; }
.price-feats li { font-size:13px; color:rgba(255,255,255,.65); padding:7px 0; font-weight:600; border-bottom:1px solid rgba(255,255,255,.07); display:flex; align-items:center; gap:9px; }
.price-feats li::before { content:'✓'; color:#66BB6A; font-weight:900; flex-shrink:0; }

/* ═══════════════════════════════
   REVIEWS
═══════════════════════════════ */
#reviews { background:var(--wall); }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:60px; }
.review-card { background:var(--white); border-radius:24px; padding:34px; box-shadow:0 4px 30px rgba(26,42,74,.08); transition:transform .3s; }
.review-card:hover { transform:translateY(-4px); }
.review-stars { font-size:18px; margin-bottom:14px; letter-spacing:2px; }
.review-text  { font-size:15px; color:#5A5040; line-height:1.7; font-weight:600; margin-bottom:22px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:13px; }
.author-av { width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:900; color:#fff; flex-shrink:0; }
.author-name { font-size:15px; font-weight:800; color:var(--dark); }
.author-role { font-size:11px; color:var(--muted); font-weight:700; }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
#contact { background:linear-gradient(145deg,#1A2A4A,#243660); text-align:center; }
#contact .section-title { color:#fff; }
#contact .section-label { color:var(--gold); }
#contact .section-desc  { color:rgba(255,255,255,.55); margin:0 auto 48px; }
.contact-phone { font-family:'Playfair Display',serif; font-size:clamp(32px,5vw,56px); font-weight:900; color:#fff; display:block; margin-bottom:8px; transition:color .25s; }
.contact-phone:hover { color:var(--gold); }
.contact-phone-label { font-size:11px; color:rgba(255,255,255,.35); font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:48px; display:block; }
.socials-grid { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:52px; }
.social-btn { display:flex; align-items:center; gap:11px; padding:15px 28px; border-radius:50px; font-size:15px; font-weight:800; color:#fff; border:none; cursor:pointer; font-family:'Baloo 2',sans-serif; transition:transform .25s, filter .25s; min-width:160px; justify-content:center; text-decoration:none; }
.social-btn:hover { transform:translateY(-4px); filter:brightness(1.12); color:#fff; }
.social-btn svg { flex-shrink:0; }
.social-btn.whatsapp  { background:linear-gradient(135deg,#25D366,#128C7E); box-shadow:0 8px 28px rgba(37,211,102,.35); }
.social-btn.telegram  { background:linear-gradient(135deg,#229ED9,#1a7fc4); box-shadow:0 8px 28px rgba(34,158,217,.35); }
.social-btn.instagram { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow:0 8px 28px rgba(220,39,67,.35); }
.social-btn.max-app   { background:linear-gradient(135deg,#FF6B35,#E85D04); box-shadow:0 8px 28px rgba(255,107,53,.35); }
.social-btn.email-btn { background:linear-gradient(135deg,#667eea,#764ba2); box-shadow:0 8px 28px rgba(102,126,234,.35); }
.contact-map { border-radius:24px; overflow:hidden; height:300px; margin-top:8px; box-shadow:0 8px 30px rgba(0,0,0,.3); }
.contact-map iframe { width:100%; height:100%; border:0; }

/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
#cta-banner { background:linear-gradient(135deg,#4FC3F7,#4DD0E1,#66BB6A); padding:80px 0; text-align:center; }
#cta-banner h2 { font-family:'Playfair Display',serif; font-size:clamp(28px,5vw,52px); font-weight:900; color:#fff; margin-bottom:16px; }
#cta-banner p  { font-size:18px; color:rgba(255,255,255,.9); font-weight:600; margin-bottom:36px; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
#site-footer { background:#1A2A4A; color:rgba(255,255,255,.6); padding:64px 0 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-logo-name { font-family:'Baloo 2',sans-serif; font-weight:900; font-size:28px; display:block; margin-bottom:12px; }
.footer-logo-name span:nth-child(1){color:#FF7043;}
.footer-logo-name span:nth-child(2){color:#FF7043;}
.footer-logo-name span:nth-child(3){color:#FFD54F;}
.footer-logo-name span:nth-child(4){color:#66BB6A;}
.footer-logo-name span:nth-child(5){color:var(--blue);}
.footer-logo-name span:nth-child(6){color:#4DD0E1;}
.footer-logo-name span:nth-child(7){color:var(--lime);}
.footer-desc { font-size:14px; line-height:1.7; font-weight:600; max-width:280px; }
.footer-col h4 { color:#fff; font-size:12px; font-weight:800; letter-spacing:2px; text-transform:uppercase; margin-bottom:18px; }
.footer-col a  { display:block; color:rgba(255,255,255,.48); font-size:14px; font-weight:600; margin-bottom:10px; transition:color .2s; }
.footer-col a:hover { color:#FFD54F; }
.footer-bottom { padding-top:24px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; align-items:center; font-size:13px; font-weight:600; flex-wrap:wrap; gap:10px; }

/* Mobile menu */
.mobile-menu { display:none; position:fixed; inset:0; background:#1A2A4A; z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:28px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:28px; font-weight:800; color:#fff; transition:color .2s; }
.mobile-menu a:hover { color:#FFD54F; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width:1024px) {
  .classes-grid { grid-template-columns:1fr 1fr; }
  .info-grid    { grid-template-columns:1fr 1fr; }
  .pricing-grid { grid-template-columns:1fr; max-width:420px; }
  .price-card.featured { transform:none; }
  .price-card.featured:hover { transform:translateY(-6px); }
  .gallery-grid { columns:3; }
}

@media (max-width:768px) {
  .container { padding:0 20px; }
  section { padding:70px 0; }

  /* Header */
  .header-inner { height:60px; padding:0 16px; }
  .site-logo img { height:36px; }
  #main-nav { display:none; }
  .burger { display:flex; }

  /* Hero */
  #hero { padding-top:60px; min-height:100svh; }
  .hero-title { font-size:clamp(38px,10vw,72px); letter-spacing:-1px; font-style:normal; }
  .hero-title .line1 { font-size:clamp(22px,6vw,36px); font-style:normal; }
  .hero-title .deniska-word { font-size:clamp(52px,14vw,90px); font-style:normal; }
  .hero-sub { font-size:15px; margin:16px 0 32px; font-style:normal; }
  .hero-btns { flex-direction:column; align-items:center; gap:12px; }
  .hero-btns .btn { width:100%; max-width:300px; text-align:center; }
  .hero-stats { gap:16px; margin-top:40px; padding-top:28px; flex-wrap:nowrap; justify-content:space-around; }
  .stat-item { flex:1; min-width:0; max-width:none; }
  .stat-num { font-size:28px; }
  .stat-label { font-size:11px; letter-spacing:0; text-transform:none; color:rgba(255,255,255,.75); line-height:1.3; }

  /* About */
  .about-grid  { grid-template-columns:1fr; gap:32px; }
  .about-features { grid-template-columns:1fr 1fr; }

  /* Classes */
  .classes-grid { grid-template-columns:1fr; }
  .class-gallery img:first-child { height:220px; }

  /* Hall */
  .hall-grid { grid-template-columns:1fr; }
  .hall-slide img { height:260px; }

  /* Info */
  .info-grid { grid-template-columns:1fr 1fr; }

  /* Gallery */
  .gallery-grid { columns:2; }
  .gallery-tabs { gap:8px; }
  .gtab { padding:6px 14px; font-size:12px; }

  /* Pricing */
  .pricing-grid { grid-template-columns:1fr; max-width:100%; }

  /* Reviews */
  .reviews-grid { grid-template-columns:1fr; }

  /* Contact */
  .socials-grid { gap:10px; }
  .social-btn { min-width:140px; padding:13px 20px; font-size:14px; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

@media (max-width:480px) {
  /* Header */
  .header-inner { height:56px; padding:0 14px; }
  .site-logo img { height:32px; }

  /* Hero */
  .hero-badge { font-size:9px; padding:6px 16px; letter-spacing:2px; }
  .hero-stats { gap:12px; }
  .stat-item { max-width:80px; }
  .stat-num { font-size:22px; }
  .stat-label { font-size:10px; letter-spacing:0; text-transform:none; line-height:1.3; }

  /* About */
  .about-features { grid-template-columns:1fr; }
  .feat-card { padding:18px; }

  /* Classes */
  .class-gallery img:first-child { height:180px; }
  .class-body { padding:18px 20px 24px; }

  /* Info */
  .info-grid { grid-template-columns:1fr; }

  /* Gallery */
  .gallery-grid { columns:2; }
  .gallery-tabs { flex-wrap:wrap; }

  /* Pricing */
  .price-card { padding:32px 20px; }
  .price-amount { font-size:38px; }

  /* Contact */
  .socials-grid { flex-direction:column; align-items:center; }
  .social-btn { width:100%; max-width:300px; min-width:unset; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr; }
  .footer-logo-name { font-size:22px; }
  .section-title { font-size:clamp(24px,7vw,38px); }
}
