:root {
  --cream: #FDF6F0;
  --gold: #CBB28B;
  --pink: #F5D4D0;
  --dark: #4A3F3F;
  --body: #dfdde8;
  --lavender: #c9c5e0;
  --lavender_white: #ece9ff;
  --lavendet_new: #f6f5ff;
  --titan: #f3eeff;
  --magnolia: #f9f7ff;
  --pudra:#cca296;
}

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

        :root {
            --primary: #c9a227;
            --primary-light: #e8d5a3;
            --dark: #1a1a1a;
            --light: #faf8f5;
            --text: #4a4a4a;
            --text-light: #888;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.6;
        }
        
          /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            z-index: 1000;
            transition: transform 0.4s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header.hide {
            transform: translateY(-100%);
        }

        .logo-icon {
            height: 50px;
            width: auto;
        }

        /* ===== NAV ===== */
        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #c9a227;
        }
        
      /* Навигация */
nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--pink);
}
  
        
        
        

        /* ===== MENU TOGGLE (3 чертички) ===== */
.menu-toggle {
    display: none;  /* Скрит на десктоп */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle div {
    width: 28px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;  /* Покажи на мобилни с !important */
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);  /* Скрит вдясно */
        transition: transform 0.3s ease;
        z-index: 999;
    }

    nav.active {
        transform: translateX(0);  /* Покажи */
    }

   /* Хамбургер меню */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  transition: all 0.3s;
}


    /* Анимация на чертичките в X */
    .menu-toggle.open div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open div:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 120px 5% 100px;  /* padding-top заради fixed header */
            margin-top: 80px;
        }
        
        
header {
  background-color: var(--magnolia);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Скрит хедър при скролиране надолу */
header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* Показване при скролиране нагоре */
header.show {
    transform: translateY(0);
    opacity: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo img {
  width: 124px;
  height:auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  font-size: 22px;
  letter-spacing: 2px;
  background: linear-gradient(120deg, #c9b38c, #f5e7c5, #bfa67a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  color: #bfa67a;
  -webkit-text-fill-color: unset;
  background: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}


/* Хамбургер меню */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  transition: all 0.3s;
}

/* Анимация на чертичките */
.menu-toggle.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open div:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
            position: relative;
            overflow: hidden;
        }

        /* Декоративни елементи */
        .about-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top:20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;    
            align-items: start;  /* Вместо center */
        
            position: relative;
            z-index: 1;
        }

        /* ===== IMAGES SIDE ===== */
 .about-images {
    position: relative;
    width: 100%;
    height: 600px;          /* Фиксирана височина */
    margin: 0 auto;
}

.image-main {
    width: 90%;
    height: 600px;
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
}

.image-main img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.image-secondary {
    position: absolute;
    bottom: -50px;          /* Излиза надолу от основната */
    right: -50px;           /* Излиза надясно */
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 5px solid white;
    z-index: 2;
}

.image-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(201, 162, 39, 0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}
       
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .experience-badge .number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        /* ===== CONTENT SIDE ===== */
        .about-content {
            padding-left: 20px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .about-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .about-title span {
            color: var(--primary);
            font-style: italic;
        }

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

        .about-text.highlight {
            font-size: 1.2rem;
            color: var(--dark);
            font-weight: 500;
            border-left: 3px solid var(--primary);
            padding-left: 20px;
            margin: 30px 0;
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin: 40px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            color: var(--dark);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .feature-text p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

/* ===== BUTTON ===== */
.about-btn {
  display: inline-block;
  margin-top: 15px;

  padding: 12px 28px;

  border-radius: 30px;
  border: 2px solid var(--gold);

  text-decoration: none;
  color: var(--gold);
  font-weight: 600;

  transition: 0.3s ease;
}

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

 

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-content {
                padding-left: 0;
                order: 1;
            }

            .about-images {
                order: 2;
                max-width: 600px;
                margin: 0 auto;
            }

            .about-title {
                font-size: 2.5rem;
            }
        }
        

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 5%;
            }

            .about-title {
                font-size: 2rem;
            }

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

            .image-main {
                width: 90%;
            }

            .image-secondary {
                width: 45%;
                bottom: -30px;
            }

            .experience-badge {
                padding: 20px 25px;
            }

            .experience-badge .number {
                font-size: 2rem;
            }
        }
        
       /* Footer */
footer {
  background-color: var(--gold);
  color: var(--cream);
  text-align: center;
  padding: 30px;
} 



/* ===== SERVICES HERO ===== */
.services-hero {
    background: linear-gradient(135deg, #fdf6f0 0%, #f5e6d3 50%, #fdf6f0 100%);
    padding: 140px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '✦';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 8rem;
    opacity: 0.03;
    color: #c9a227;
}

.services-hero::after {
    content: '✦';
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 6rem;
    opacity: 0.03;
    color: #c9a227;
}

.hero-content .subtitle {
    display: block;
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 20px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: #c9a227;
    margin: 0 auto 20px;
}

.hero-content p {
    color: #888;
    font-size: 1.2rem;
    font-style: italic;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

/* ===== VISUAL SIDE ===== */
.service-visual {
    position: relative;
}

.image-frame {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
} 
.service-image{
    width:100%;
    height: auto;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
   
}

.placeholder-img {
    background: #fff;
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #c9a227;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background:#CBB28B;
    color:grey;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== DETAILS SIDE ===== */
.service-details {
    padding: 20px;
    color:#CBB28B;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-header .icon {
    font-size: 2rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

/* ===== SERVICE LIST ===== */
.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 15px;
    position: relative;
    top: -3px;
}

.service-price {
    color: #c9a227;
    font-weight: 600;
    font-size: 1.2rem;
    white-space: nowrap;
}

.badge {
    background: #c9a227;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
}

.service-list li.featured .service-name {
    color: #c9a227;
    font-weight: 600;
}

/* ===== SERVICE NOTE ===== */
.service-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #faf8f5;
    padding: 15px 20px;
    border-radius: 10px;
    color: #888;
    font-size: 0.9rem;
}

.service-note span {
    font-size: 1.2rem;
}

/* ===== EXTRAS SECTION ===== */
.extras-section {
    background:linear-gradient(135deg, #fdf6f0 0%, #f5e6d3 50%, #fdf6f0 100%);
    color: #fff;
    padding: 60px 5%;
    text-align: center;
}

.extras-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
    color:#cca296;
}

.extras-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width:100%;
   max-width: 1400px; 
    margin: 0 auto;
}

.extra-item {
    background:linear-gradient(135deg, #eadccc 0%, #d9c2a6 50%, #eadccc 100%);
    padding: 40px;
    border-radius: 20px;
    min-width: 450px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.extra-item:hover {
    transform: translateY(-10px);
    border-color: #c9a227;
    background: rgba(255,255,255,0.08);
}

.extra-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.extra-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.extra-item p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.extra-price {
    color: #c9a227;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== CTA ===== */
.services-cta {
    background: linear-gradient(135deg, #fdf6f0 0%, #f5e6d3 100%);
    padding: 100px 5%;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-content p {
    color: #888;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background:#CBB28B;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
 
}

.cta-button:hover {
    background: transparent;
    color: #1a1a1a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
   

   .service-image{
    width:100%;
    height: auto;
}
}
/* =========================================
   GLOBAL MOBILE FIXES
========================================= */
html, body {
    overflow-x: hidden;
}

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

/* =========================================
   TABLET (max 992px)
========================================= */
@media (max-width: 992px) {
        .service-image{
            width:100%;
            height: auto;
        }
    .service-block {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 6%;
        text-align: center;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .section-header {
        justify-content: center;
          color: #c9a227;
    }

    .service-details {
        padding: 0;
    }

    .extras-grid {
        gap: 25px;
    }

    .extra-item {
        min-width: 220px;
    }
}

/* =========================================
   MOBILE (max 768px)
========================================= */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }
    
    .service-image{
            width:auto;
            height: auto;
        }

    .logo img {
        width: 95px;
    }

    /* HERO */
    .services-hero {
        padding: 120px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* SERVICE BLOCK */
    .service-block {
        padding: 60px 20px;
    }

    .image-frame {
        padding: 20px;
    }

    .placeholder-img {
        height: 220px;
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .service-name {
        font-size: 0.95rem;
    }

    .service-price {
        font-size: 1rem;
    }

    /* EXTRAS */
    .extras-section {
        padding: 60px 20px;
    }

    .extras-grid {
      
    max-width: 1200px;   /* по-широко */
    margin: 0 auto;
        flex-direction: column;
        align-items: center;
    }

    .extra-item {
        width: 100%;
        max-width: 350px;
    }

    /* CTA */
    .services-cta {
        padding: 70px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
}

/* =========================================
   SMALL PHONES (max 480px)
========================================= */
@media (max-width: 480px) {
    
     
      .service-image{
            width:auto;
            height: auto;
        }
        
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content .subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .gold-line {
        width: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .dots {
        display: none;
    }

    .service-price {
        font-size: 1rem;
    }

    .extra-item {
        padding: 25px;
    }

    footer {
        font-size: 0.8rem;
        padding: 20px;
    }
}
/* =========================
   COURSES TEXT STYLE FIX
========================= */

.courses-intro {
    padding: 110px 5%;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.section-header-center p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
}

/* COURSE CARDS */

.course-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.course-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.course-footer {
    margin-top: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #c9a227;
}

/* Леко по-луксозен hover */
.course-card:hover h3 {
    color: #c9a227;
    transition: 0.3s ease;
}

/* =========================
   LUXURY COURSES SECTION
========================= */

.courses-lux {
    padding: 140px 5%;
    background: linear-gradient(135deg, #f3e8dc 0%, #e2c7a7 50%, #f3e8dc 100%);
    position: relative;
    overflow: hidden;
}

/* Декоративен blur ефект */
.courses-lux::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,162,39,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.lux-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 90px;
}

.lux-subtitle {
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #c9a227;
    margin-bottom: 15px;
}

.lux-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.lux-line {
    width: 70px;
    height: 2px;
    background: #c9a227;
    margin: 0 auto 25px;
}

.lux-header p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}

/* GRID */
.lux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.lux-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(201,162,39,0.3);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.lux-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    border-color: #c9a227;
}

.lux-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lux-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.lux-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.lux-price,
.lux-phone {
    font-weight: 600;
    color: #c9a227;
    font-size: 1.05rem;
}

/* Специална карта за екипа */
.lux-team {
    background:#CBB28B;
    color: #fff;
}

.lux-team p {
    color: #ddd;
}

.lux-team .lux-phone {
    color: #f3d9b1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .lux-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lux-grid {
        grid-template-columns: 1fr;
    }

    .lux-header h2 {
        font-size: 2.2rem;
    }
}



/* ===============================
   COURSES SECTION - SERVICES STYLE
================================ */

.courses-intro {
    padding: 120px 8%;
    background: #FDF6F0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #c9a227;
    margin: 20px auto;
}

.section-header-center p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* GRID */

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

/* CARD */

.course-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #c9a227;
}

.course-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.course-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.course-footer {
    margin-top: 25px;
    font-weight: 600;
    color: #c9a227;
}

/* ===== TEAM SECTION ===== */

.team-section {
    padding: 100px 5%;
    background-color: #FDF6F0;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Позволява пренасяне */
}

.team-card {
    width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.team-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #C6A75E;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.position {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    color: #C6A75E;
    font-weight: 500;
}

.team-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    .team-section {
        padding: 70px 20px;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 100%;
        max-width: 350px;
    }

    .team-img {
        width: 150px;
        height: 150px;
    }
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}


/*настройки за екипа */
/* ===== TEAM SECTION ===== */

.team-section {
    padding: 100px 10%;
    background-color: #FDF6F0;
    text-align: center;
}

.team-main-title {
    font-size: 34px;
    margin: 15px 0 60px;
    font-weight: 600;
}

/* Хоризонтално подредени карти */
.team-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: nowrap; /* в един ред */
}

.team-card {
    width: 400px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.team-img {
    width: 260px;
    height: 260px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #C6A75E;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.position {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    color: #C6A75E;
    font-weight: 500;
}

.team-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid {
        flex-wrap: wrap;
    }
}


/* ... другите ти стилове ... */


/* ===== CEO SECTION STYLE ===== */

.about-intro {
    font-weight: 600;
    color: #C6A75E;
    margin-bottom: 20px;
}

.about-list {
    margin: 25px 0;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

.awards {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-left: 4px solid #C6A75E;
    border-radius: 8px;
}

.awards h4 {
    margin-bottom: 15px;
    color: #C6A75E;
}

.awards ul {
    padding-left: 20px;
}

.awards li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.about-text.highlight {
    margin-top: 30px;
    font-weight: 500;
}
