/* СветЛица Stylesheet */

/* --- CSS Variables --- */
:root {
    --bg-milky: #FAF6EE;
    --color-pink: #DCAE96;
    --color-pink-dark: #C78F82;
    --color-pink-light: #F7EAE3;
    
    --color-olive: #6E7A5F;
    --color-olive-dark: #56614A;
    --color-olive-light: #E7ECE1;
    
    --color-terracotta: #C86A4B;
    --color-terracotta-dark: #AF4D30;
    --color-terracotta-light: #F9EBE6;
    
    --color-dark: #2F3136;
    --color-white: #FFFFFF;
    --color-gray: #78706C;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-comfortaa: 'Comfortaa', sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(43, 38, 35, 0.05);
    --shadow-md: 0 15px 35px rgba(43, 38, 35, 0.1);
    --shadow-heavy: 0 20px 40px rgba(175, 77, 48, 0.15);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-milky);
    color: var(--color-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

.text-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

p {
    font-weight: 400;
    color: var(--color-dark);
    opacity: 0.9;
}

strong {
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background-color: var(--color-olive);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-olive-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-pink-light);
    color: var(--color-pink-dark);
    border-color: var(--color-pink);
}

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

.btn-terracotta {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

.btn-terracotta:hover {
    background-color: var(--color-terracotta-dark);
    box-shadow: var(--shadow-heavy);
    transform: translateY(-2px);
}

.btn-olive {
    background-color: var(--color-olive);
    color: var(--color-white);
}

.btn-olive:hover {
    background-color: var(--color-olive-dark);
    transform: translateY(-2px);
}

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

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

.btn-white {
    background-color: var(--color-white);
    color: var(--color-terracotta-dark);
}

.btn-white:hover {
    background-color: var(--bg-milky);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-md {
    padding: 12px 28px;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.w-full {
    width: 100%;
}

/* --- Header / Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 246, 238, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220, 174, 150, 0.2);
    transition: var(--transition-smooth);
    padding: 0;
}

.navbar.scrolled {
    background-color: rgba(250, 246, 238, 0.95);
    box-shadow: var(--shadow-soft);
}

.navbar-top {
    background-color: rgba(247, 234, 227, 0.9);
    border-bottom: 1px solid rgba(220, 174, 150, 0.15);
    padding: 10px 0;
    transition: var(--transition-smooth);
    max-height: 80px;
    opacity: 1;
    overflow: hidden;
}

.navbar.scrolled .navbar-top {
    max-height: 0;
    padding: 0;
    border-bottom: none;
    opacity: 0;
}

.navbar-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
}

.navbar-top-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray);
}

.navbar-top-address svg {
    width: 16px;
    height: 16px;
    fill: var(--color-terracotta);
}

.navbar-top-messengers {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-top .messenger-icon {
    width: 44px;
    height: 44px;
}

.navbar-top .messenger-icon svg {
    width: 22px;
    height: 22px;
}

.navbar-top-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
}

.navbar-top-phone svg {
    width: 16px;
    height: 16px;
    fill: var(--color-terracotta);
}

.navbar-top-phone .phone-link {
    font-weight: 600;
    color: var(--color-dark);
}

.navbar-top-phone .phone-link:hover {
    color: var(--color-terracotta);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 24px;
    width: 100%;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-container {
    padding: 10px 24px;
}

.logo {
    font-family: var(--font-comfortaa);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-dark);
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-accent {
    color: var(--color-terracotta);
}

.nav-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 500;
}

.nav-info-item svg {
    width: 14px;
    height: 14px;
    fill: var(--color-terracotta);
}

.phone-link {
    font-weight: 600;
    color: var(--color-dark);
}

.phone-link:hover {
    color: var(--color-terracotta);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-terracotta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Messenger Icons in Nav */
.messenger-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.messenger-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid rgba(43, 38, 35, 0.1);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.messenger-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-dark);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.messenger-icon:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.messenger-icon.tg:hover { background-color: #24A1DE; }
.messenger-icon.wa:hover { background-color: #25D366; }
.messenger-icon.vk:hover { background-color: #4C75A3; }
.messenger-icon.max:hover { background-color: #F2A900; }
.messenger-icon.viber:hover { background-color: #7360F2; }

.messenger-icon:hover svg {
    fill: var(--color-white);
}

/* Map Quick Links */
.map-links {
    display: flex;
    gap: 8px;
}

.map-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.map-btn.yandex {
    background-color: #FFCC00;
    color: #000000;
}

.map-btn.dgis {
    background-color: #2DCA5C;
    color: #FFFFFF;
}

.map-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Mobile Drawer --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: var(--bg-milky);
    z-index: 999;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.mobile-nav-link:hover {
    color: var(--color-terracotta);
}

.mobile-nav-info {
    margin-top: auto;
    border-top: 1px solid rgba(43, 38, 35, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 190px 0 100px;
    background-color: var(--bg-milky);
    overflow: hidden;
}

.hero-map-links {
    position: absolute;
    top: 190px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
}

.logo-container-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-pink-light);
    padding: 60px;
}

.hero-logo-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    z-index: 2;
    transition: var(--transition-smooth);
}

.hero-logo-img:hover {
    transform: scale(1.03);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-milky) 10%, rgba(250, 246, 238, 0.95) 30%, rgba(250, 246, 238, 0.2) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px 8px 24px;
    background-color: var(--color-pink-light);
    color: var(--color-pink-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 4px solid var(--color-pink-dark);
    box-shadow: var(--shadow-soft);
}

.hero-pretitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title-first-line {
    display: block;
    margin-bottom: 8px;
}

.hero-title-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.hero-title-sans {
    font-family: var(--font-sans);
    font-weight: 700;
}

.hero-title-second-line {
    display: block;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--color-gray);
    font-family: var(--font-sans);
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-messengers {
    margin-top: 25px;
}

.hero-messengers .messenger-icon {
    width: 52px;
    height: 52px;
    box-shadow: var(--shadow-soft);
}

.hero-messengers .messenger-icon svg {
    width: 26px;
    height: 26px;
}

.hero-messengers .messenger-icon.tg {
    background-color: #24A1DE;
    border-color: transparent;
}
.hero-messengers .messenger-icon.tg svg {
    fill: var(--color-white);
}

.hero-messengers .messenger-icon.wa {
    background-color: #25D366;
    border-color: transparent;
}
.hero-messengers .messenger-icon.wa svg {
    fill: var(--color-white);
}

.hero-messengers .messenger-icon.vk {
    background-color: #4C75A3;
    border-color: transparent;
}
.hero-messengers .messenger-icon.vk svg {
    fill: var(--color-white);
}

.hero-messengers .messenger-icon.max {
    background-color: #F2A900;
    border-color: transparent;
}
.hero-messengers .messenger-icon.max svg {
    fill: var(--color-white);
}

.hero-messengers .messenger-icon:hover {
    transform: translateY(-4px);
    opacity: 0.9;
    box-shadow: var(--shadow-md);
}

/* --- Philosophy Banner --- */
.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-milky);
    position: relative;
}

.philosophy-container {
    display: flex;
    justify-content: center;
}

.philosophy-card {

    background-color: var(--color-pink-light);
    border-left: 8px solid var(--color-pink);
    padding: 50px;
    border-radius: 0 16px 16px 0;
    max-width: 900px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
}

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

.philosophy-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.philosophy-signature {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-pink-dark);
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.section-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-terracotta);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-dark);
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-terracotta);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Services Single Block Styling */
.services-list-wrapper {
    background-color: var(--color-pink-light);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-soft);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(220, 174, 150, 0.2);
}

.services-modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.services-modern-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(220, 174, 150, 0.3);
}

.service-icon-bullet {
    color: var(--color-terracotta);
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.service-info-text {
    flex-grow: 1;
}

.service-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Messengers List Styling */
.services-messengers {
    max-width: 1000px;
    margin: 50px auto 0;
    text-align: center;
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(220, 174, 150, 0.15);
}

.services-messengers h4 {
    font-size: 1.15rem;
    font-family: var(--font-sans);
    margin-bottom: 25px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.messengers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.messengers-list li {
    width: 100%;
    max-width: 100%; /* stretched in length to match the grid container */
}

.messenger-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.messenger-list-item svg {
    width: 40px;
    height: 40px;
    fill: var(--color-white);
}

.messenger-list-item.tg-color { background-color: #24A1DE; }
.messenger-list-item.wa-color { background-color: #25D366; }
.messenger-list-item.vk-color { background-color: #4C75A3; }
.messenger-list-item.max-color { background-color: #F2A900; }

.messenger-list-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.95;
}

/* --- Gift Cards Section --- */
.gift-cards-section {
    padding: 100px 0;
    background-color: var(--bg-milky);
}

.gift-card-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gift-card-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.badge-terracotta {
    background-color: var(--color-terracotta-light);
    color: var(--color-terracotta-dark);
}

.gift-card-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.gift-card-text {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.gift-card-perks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 0.95rem;
}

.perk-icon {
    font-size: 1.2rem;
}

.gift-card-visual {
    position: relative;
    min-height: 350px;
}

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

/* --- Booking Section --- */
.booking-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.booking-info p {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.booking-promo-alert {
    background-color: var(--color-terracotta-light);
    border-left: 4px solid var(--color-terracotta);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
}

.promo-tag {
    font-weight: 700;
    color: var(--color-terracotta-dark);
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.guarantee-item svg {
    width: 20px;
    height: 20px;
    fill: var(--color-olive);
}

.booking-form-box {
    background-color: var(--bg-milky);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(220, 174, 150, 0.2);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(43, 38, 35, 0.15);
    background-color: var(--color-white);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(200, 106, 75, 0.15);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-consent input {
    margin-top: 4px;
}

.form-consent label {
    font-size: 0.75rem;
    color: var(--color-gray);
    line-height: 1.4;
}

/* --- Contacts Section --- */
.contacts-section {
    padding: 100px 0;
    background-color: var(--bg-milky);
}

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

.contacts-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts-intro-text {
    font-size: 1.05rem;
    color: var(--color-gray);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.bg-pink { background-color: var(--color-pink-light); }
.info-icon.bg-pink svg { fill: var(--color-pink-dark); }

.info-icon.bg-olive { background-color: var(--color-olive-light); }
.info-icon.bg-olive svg { fill: var(--color-olive-dark); }

.info-icon.bg-terracotta { background-color: var(--color-terracotta-light); }
.info-icon.bg-terracotta svg { fill: var(--color-terracotta-dark); }

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content strong {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content span,
.info-content a {
    font-size: 1.1rem;
    font-weight: 600;
}

.contacts-messengers-wrapper h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.contacts-map-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 16px;
}

.contacts-map-buttons .map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    text-transform: none;
}

.contacts-map-buttons .map-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Map Box */
.contacts-map-box {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.map-overlay-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.map-overlay-info p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 40px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    color: var(--color-white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-top: 10px;
}

.footer-nav h4,
.footer-contacts h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--color-pink);
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--color-pink);
    padding-left: 5px;
}

.footer-nav a:focus {
    outline: none;
}

.footer-contacts p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contacts .phone-link {
    color: var(--color-white);
    font-size: 1.1rem;
}

.footer-contacts .phone-link:hover {
    color: var(--color-pink);
}

.footer-maps {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-maps a {
    color: var(--color-pink-light);
    font-weight: 600;
}

.footer-maps a:hover {
    color: var(--color-pink);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: var(--color-white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 20px;
    z-index: 10000;
    border: 1px solid rgba(220, 174, 150, 0.3);
    animation: slideUp 0.5s ease-out;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--color-dark);
    line-height: 1.5;
}

.cookie-link {
    color: var(--color-terracotta-dark);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: var(--color-terracotta);
}

/* --- Animations --- */
@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delayed {
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delayed2 {
    animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-background {
        width: 35%;
    }
    
    .hero-content-wrapper {
        max-width: 900px;
    }
    
    .services-list-wrapper {
        padding: 40px;
    }
    
    .gift-card-banner {
        grid-template-columns: 1fr;
    }
    
    .gift-card-visual {
        min-height: 300px;
        order: -1;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Reduced vertical margins between sections */
    .services-section,
    .gift-cards-section,
    .booking-section,
    .contacts-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .nav-links, .nav-info, .nav-actions .btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding-top: 130px;
        min-height: auto;
    }
    
    .hero-map-links {
        top: 95px;
        right: 20px;
    }
    
    .navbar-top {
        display: none;
    }
    
    .hero-background {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, var(--bg-milky) 0%, rgba(250, 246, 238, 0.4) 50%, var(--bg-milky) 100%);
    }
    
    .hero-content-wrapper {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .philosophy-card {
        padding: 30px 20px;
    }
    
    .philosophy-text {
        font-size: 1.25rem;
    }
    
    .services-list-wrapper {
        padding: 40px 24px;
    }
    
    .services-modern-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-item-title {
        font-size: 1.75rem;
    }
    
    .booking-wrapper,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form-box {
        padding: 25px;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Reduced vertical margins between sections */
    .services-section,
    .gift-cards-section,
    .booking-section,
    .contacts-section {
        padding: 45px 0;
    }
}

@media (max-width: 480px) {
    .contacts-map-buttons {
        grid-template-columns: 1fr;
    }
}

/* Custom Additions */
.messenger-list-item svg {
    width: 40px;
    height: 40px;
    fill: var(--color-white);
}

.messenger-list-item.booking-color {
    background-color: var(--color-olive);
}

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

.service-item-title {
    font-size: 2.1rem;
}

.contacts-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Mobile Adaptations for Small Screen Resolutions (<= 375px / 350px) --- */
@media (max-width: 375px) {
    /* Reduce major section paddings to eliminate overly large gaps */
    .hero-section {
        padding: 100px 0 30px;
    }
    .services-section,
    .gift-cards-section,
    .booking-section,
    .contacts-section {
        padding: 25px 0;
    }

    /* Container padding adjustment */
    .container {
        padding: 0 12px;
    }

    /* Navbar & Logo fitting */
    .navbar-container {
        padding: 10px 12px;
    }
    .logo {
        font-size: 1.25rem;
        gap: 6px;
    }
    .header-logo {
        height: 26px;
    }
    .menu-toggle {
        width: 22px;
        height: 18px;
    }

    /* Hero adjustments */
    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 15px;
    }
    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    /* Services list details */
    .services-list-wrapper {
        padding: 24px 16px;
    }
    .services-modern-list li {
        gap: 10px;
        padding-bottom: 12px;
    }
    .service-item-title {
        font-size: 1.4rem; /* Overrides the custom addition */
    }
    
    /* Services messengers */
    .services-messengers {
        padding: 25px 15px;
        margin-top: 25px;
    }
    .services-messengers h4 {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .messenger-list-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    .messenger-list-item svg {
        width: 40px !important; /* Force resize */
        height: 40px !important;
    }

    /* Gift cards */
    .gift-card-content {
        padding: 25px 15px;
    }
    .gift-card-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .gift-card-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .gift-card-visual {
        min-height: 180px;
    }

    /* Booking & Lead Form */
    .booking-info h2 {
        font-size: 1.65rem;
        margin-bottom: 15px;
    }
    .booking-info p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .booking-form-box {
        padding: 20px 12px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Contacts & map links */
    .section-title {
        font-size: 1.65rem;
    }
    .contacts-details {
        gap: 20px;
    }
    .info-row {
        gap: 12px;
    }
    .info-icon {
        width: 40px;
        height: 40px;
    }
    .info-icon svg {
        width: 18px;
        height: 18px;
    }
    .info-content strong {
        font-size: 0.75rem;
    }
    .info-content span,
    .info-content a {
        font-size: 0.9rem;
    }
    .contacts-map-buttons .map-btn {
        white-space: normal; /* Allow text-wrap to prevent clipping */
        text-align: center;
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    /* Drawer menu formatting */
    .mobile-nav {
        width: 85%;
        padding: 80px 20px 30px;
    }

    /* Cookie Banner compacting */
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }
    .cookie-container {
        gap: 10px;
    }
    .cookie-text {
        font-size: 0.75rem;
    }
}

/* Make services-messengers h4 title black */
.services-messengers h4 {
    color: #000000;
}

.gift-card-text {
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 30px;
}

.contacts-intro-text {
    font-size: 1.05rem;
    color: #000000;
}