 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-color: #71533c;
     --primary-dark: #5D4037;
     --primary-light: #A1887F;
     --secondary-color: #a1887f;
     --accent-color: #EFEBE9;
     --dark-color: #3E2723;
     --dark-light: #4E342E;
     --light-color: #F5EFE9;
     --text-color: #594D46;
     ;
     --text-light: #94867D;
     --light-gray: #E8E0D9;
     --gray: #eeeeee;
     --font-heading: 'Playfair Display', serif;
     --font-body: 'Inter', sans-serif;
     --shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
     --shadow-hover: 0 15px 40px rgba(139, 69, 19, 0.25);
     --shadow-heavy: 0 20px 50px rgba(62, 39, 35, 0.2);
     --shadow-modal: 0 25px 80px rgba(62, 39, 35, 0.3);
     --border-radius: 16px;
     --border-radius-sm: 10px;
     --border-radius-lg: 20px;
     --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     --transition-fast: all 0.2s ease;

     --gradient-primary: linear-gradient(135deg, #5e5044 0%, #b8682fc4 100%);
     --gradient-dark: linear-gradient(135deg, #4A3F35 0%, #6B5B4E 100%);
     --gradient-light: linear-gradient(135deg, #F5EFE9 0%, #EFEBE9 100%);
     --gradient-modal: linear-gradient(135deg, rgba(62, 39, 35, 0.98), rgba(93, 64, 55, 0.98));
 }










 html {
     scroll-behavior: smooth;
     overflow-x: hidden;
 }

 body {
     font-family: var(--font-body);
     font-size: 17px;
     line-height: 1.7;
     color: var(--text-color);
     background: var(--light-color);
     overflow-x: hidden;
     position: relative;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

 body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 10% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 20%),
         radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 20%),
         radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.04) 0%, transparent 30%);
     pointer-events: none;
     z-index: -1;
 }

 .container {
     width: 100%;
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 30px;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: var(--font-heading);
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1.2rem;
     color: var(--dark-color);
 }

 h1 {
     font-size: 3.5rem;
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     display: inline-block;
 }

 h2 {
     font-size: 2.8rem;
     display: inline-block;
 }

 h3 {
     font-size: 2rem;
 }

 h4 {
     font-size: 1.5rem;
 }

 p {
     margin-bottom: 1.5rem;
     font-size: 1.05rem;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul,
 ol {
     list-style: none;
 }

 .header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background: rgba(245, 239, 233, 0.95);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
     padding: 15px 0;
     transition: var(--transition);
     border-bottom: 1px solid #866349;
 }

 .header.scrolled {
     padding: 10px 0;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .heart-container {
     position: relative;
     display: inline-block;
     margin-right: 12px;
 }

 .heart-icon {
     font-size: 2rem;
     animation: heartFloat 4s ease-in-out infinite;
     color: var(--primary-color);
 }

 @keyframes heartFloat {

     0%,
     100% {
         transform: translateY(0) scale(1);
     }

     50% {
         transform: translateY(-10px) scale(1.1);
     }
 }

 .logo-text {
     font-family: var(--font-heading);
     font-size: 1.6rem;
     font-weight: 700;
     background: var(--gradient-primary);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     letter-spacing: -0.5px;
 }

 .nav-links {
     display: flex;
     gap: 2.5rem;
 }

 .nav-link {
     font-weight: 600;
     font-size: 1rem;
     position: relative;
     padding: 8px 0;
     color: var(--dark-color);
 }

 .nav-link::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gradient-primary);
     border-radius: 2px;
     transition: var(--transition);
 }

 .nav-link:hover::before {
     width: 100%;
 }

 .nav-link:hover {
     color: var(--primary-color);
 }

 .menu-toggle {
     display: none;
     background: var(--gradient-primary);
     border: none;
     width: 44px;
     height: 44px;
     border-radius: 10px;
     font-size: 1.3rem;
     color: white;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: var(--shadow);
     align-items: center;
     justify-content: center;
 }

 .menu-toggle:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-hover);
 }

 .hero.hero {
     padding: 200px 0 140px;
     position: relative;
     overflow: hidden;
     color: #ffffff;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('/images/41.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     filter: sepia(30%);
     z-index: -2;
 }

 .hero::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(62, 39, 35, 0.75);
     z-index: -1;
 }

 .hero-content {
     max-width: 800px;
     text-align: center;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .hero-title {
     font-size: 3.2rem;
     margin-bottom: 1.5rem;
     color: white;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .hero-subtitle {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.95);
     margin-bottom: 2.5rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.6;
 }


 .cta-button {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--gradient-primary);
     color: white;
     padding: 16px 40px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: var(--transition);
     box-shadow: var(--shadow-heavy);
     border: none;
     cursor: pointer;
     font-family: inherit;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(139, 69, 19, 0.35);
 }

 .hero-decoration {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     overflow: hidden;
     z-index: 1;
 }

 .decoration-element {
     position: absolute;
     border-radius: 50%;
     opacity: 0.2;
     filter: blur(40px);
 }

 .decoration-1 {
     width: 300px;
     height: 300px;
     background: var(--primary-color);
     top: -100px;
     right: -100px;
     animation: float 25s infinite ease-in-out;
 }

 .decoration-2 {
     width: 400px;
     height: 400px;
     background: var(--secondary-color);
     bottom: -150px;
     left: -150px;
     animation: float 30s infinite ease-in-out reverse;
 }

 .decoration-3 {
     width: 200px;
     height: 200px;
     background: var(--accent-color);
     top: 50%;
     left: 10%;
     animation: float 20s infinite ease-in-out;
 }

 @keyframes float {

     0%,
     100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(20px, -30px);
     }
 }

 .floating-hearts {
     position: absolute;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1;
 }

 .floating-heart-small {
     position: absolute;
     color: var(--primary-light);
     opacity: 0.15;
     font-size: 1.2rem;
     animation: floatHeart 20s linear infinite;
     will-change: transform, opacity;
 }

 @keyframes floatHeart {
     0% {
         transform: translateY(100vh) rotate(0deg);
         opacity: 0;
     }

     10% {
         opacity: 0.2;
     }

     90% {
         opacity: 0.1;
     }

     100% {
         transform: translateY(-100px) rotate(360deg);
         opacity: 0;
     }
 }

 .about {
     padding: 120px 0;
     position: relative;
     background-color: var(--light-color);
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title {
     font-size: 2.8rem;
     margin-bottom: 15px;
 }

 .section-divider {
     width: 80px;
     height: 4px;
     background: var(--gradient-primary);
     margin: 20px auto 25px;
     border-radius: 2px;
     position: relative;
     overflow: hidden;
 }

 .section-divider::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
     animation: shimmer 2s infinite;
 }

 @keyframes shimmer {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: var(--text-light);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-text p {
     font-size: 1.05rem;
     line-height: 1.7;
 }

 .about-text .lead {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--primary-dark);
     margin-bottom: 25px;
 }

 .about-text .highlight {
     background: rgba(139, 69, 19, 0.08);
     padding: 25px;
     border-radius: var(--border-radius);
     border-left: 4px solid #71533c;
     font-style: italic;
     margin: 30px 0;
     border: 1px solid rgba(134, 99, 73, 0.15);
     color: #5D4037;
     position: relative;
     overflow: hidden;
 }

 .about-image {
     position: relative;
 }

 .image-frame {
     border-radius: var(--border-radius);
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     background: #ffffff;
     height: 500px;
     position: relative;
 }

 .profile-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .image-frame:hover .profile-image {
     transform: scale(1.03);
 }

 .image-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(62, 39, 35, 0.95), transparent);
     color: white;
     padding: 30px 25px 25px;
     text-align: center;
 }

 .image-overlay p {
     margin: 0;
     font-size: 1.4rem;
     font-weight: 700;
     font-family: var(--font-heading);
 }

 .image-overlay span {
     display: block;
     font-size: 1rem;
     font-weight: 400;
     margin-top: 5px;
     opacity: 0.9;
     font-family: var(--font-body);
     color: var(--primary-light);
 }

































 .reviewer-info {
     display: flex;
     align-items: center;
     gap: 15px;
     width: 100%;
 }
 
 .mini-stars {
     color: #8d6444;
     font-size: 0.9rem;
     align-items: center;
     line-height: 1;
     gap: 2px;
    height: 100%; 
    display: flex;
    align-items: center;
 }

 .reviewer-details {
     display: flex;
     flex-direction: column;
     justify-content: center;
     flex-grow: 1;
     margin: 0;
     padding: 0;
 }

 .header-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     flex-wrap: wrap;
 }

 .reviewer-name {
     margin: 0;
     padding: 0;
     font-size: 1.1rem;
     font-weight: 700;
     color: #333;
     line-height: 1.2;
 }

 .meta-group {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .review-date {
     font-size: 0.85rem;
     color: #777;
     white-space: nowrap;
     margin: 0;
 }

.client-location, 
.mini-location-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 28px;
    padding: 0 10px;
    box-sizing: border-box;
    background: rgba(134, 99, 73, 0.1);
    border: 1px solid rgba(134, 99, 73, 0.3);
    border-radius: 20px;
    line-height: 1;
}



.client-location, .mini-location-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 28px;
    padding: 0 10px;
    box-sizing: border-box;
    background: rgba(134, 99, 73, 0.5);  
    border: 1px solid rgba(134, 99, 73, 1);
    border-radius: 20px;
    line-height: 1; }

 .client-location .location-text,
 .mini-location-badge .location-text {
     font-size: 0.75rem;
     color: #c5bdb6;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin: 0;
     padding-top: 1px;
 }

 .client-location .location-icon,
 .mini-location-badge .location-icon {
     width: 14px;
     height: 14px;
     object-fit: contain;
     display: block;
     margin: 0;
 }

.stars-location-row {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 30px; 
    gap: 15px;
    width: 100%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-row {
        gap: 5px;
    }

    .stars-location-row {
        display: flex;
        justify-content: center; 
        align-items: center;     
        gap: 15px;
        width: 100%;
    }

    .mini-stars {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: auto; 
        margin: 0;
        padding: 0;
        line-height: 0; 
    }

    .mini-location-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0; 
    }
    
    .mini-location-badge .location-text {
        padding-top: 0; 
    }
}






























 .reviews {
     padding: 120px 0;
     background: var(--gradient-dark);
     color: white;
     position: relative;
     overflow: hidden;
 }

 .reviews .section-title {
     color: white;
 }

 .reviews .section-subtitle {
     color: rgba(255, 255, 255, 0.8);
 }

 .reviews-carousel {
     position: relative;
     max-width: 100%;
     margin: 50px 0 70px;
 }

 .carousel-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .carousel-title {
     font-size: 1.8rem;
     color: white;
     font-family: var(--font-heading);
     margin-bottom: 0;
 }

 .carousel-prev,
 .carousel-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     border: 2px solid #866349;
     color: white;
     font-size: 1.2rem;
     cursor: pointer;
     transition: var(--transition);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
 }

 .carousel-prev:hover,
 .carousel-next:hover {
     background: var(--primary-color);
     border-color: #866349;
     transform: translateY(-50%) scale(1.1);
 }

 .carousel-indicators {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 30px;
     width: 100%;
 }

 .carousel-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.3);
     border: 2px solid transparent;
     cursor: pointer;
     transition: var(--transition);
 }

 .carousel-indicator.active {
     background: var(--primary-color);
     transform: scale(1.3);
     box-shadow: 0 0 10px rgba(134, 99, 73, 0.5);
     border-color: rgba(255, 255, 255, 0.5);
 }

 .carousel-indicator:hover {
     background: rgba(255, 255, 255, 0.5);
 }

 .swiper {
     width: 100%;
     height: 100%;
     padding: 20px 5px 20px !important;
     overflow: hidden !important;
 }

 .swiper-wrapper {
     transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
     align-items: stretch;
 }

 .swiper-slide {
     height: auto !important;
     opacity: 0;
     transform: translateX(50px) scale(0.95);
     transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     pointer-events: none;
     padding: 10px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     transition: var(--transition);
 }

 .heart-container {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 40px;
     overflow: hidden;
     flex-shrink: 0;
 }

 .logo-photo {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: var(--transition);
 }

 .logo-text {
     font-family: var(--font-heading);
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--dark-color);
     background: #e81224;
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     letter-spacing: -0.5px;
     transition: var(--transition);
 }

 .logo:hover .logo-text {
     background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
     -webkit-background-clip: text;
     background-clip: text;
 }

 @media (max-width: 768px) {
     .heart-container {
         width: 45px;
         height: 36px;
         border-width: 1.5px;
     }

     .logo-text {
         font-size: 1.2rem;
     }
 }

 @media (max-width: 576px) {
     .logo {
         gap: 8px;
     }

     .heart-container {
         width: 35px;
         height: 32px;
     }

     .logo-text {
         font-size: 1.1rem;
     }
 }

 @media (max-width: 400px) {
     .logo-text {
         font-size: 1rem;
     }

     .heart-container {
         width: 30px;
         height: 30px;
     }
 }

 .swiper-slide-active {
     opacity: 1;
     transform: translateX(0) scale(1);
     pointer-events: all;
 }

 .swiper-slide-prev {
     opacity: 0;
     transform: translateX(-50px) scale(0.95);
 }

 .swiper-slide-next {
     opacity: 0;
     transform: translateX(50px) scale(0.95);
 }

 .review-card {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 20px;
     padding: 35px 30px;
     border: 1px solid #866349;
     min-height: 420px;
     display: flex;
     flex-direction: column;
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .review-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--gradient-primary);
 }

 .review-card-inner {
     flex: 1;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .reviewer-info {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 15px;
 }

 .reviewer-img {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     object-fit: cover;
     border: 3px solid rgba(134, 99, 73, 0.4);
     flex-shrink: 0;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .avatar-placeholder {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: var(--gradient-primary);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.8rem;
     flex-shrink: 0;
     border: 3px solid rgba(255, 255, 255, 0.2);
 }

 .reviewer-name {
     font-size: 1.5rem;
     margin-bottom: 5px;
     color: white;
     font-family: var(--font-heading);
 }

 .review-date {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.9rem;
     background: rgba(134, 99, 73, 0.3);
     padding: 4px 12px;
     border-radius: 20px;
     align-self: flex-start;
 }

 .review-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid #866349;
 }

 .review-content {
     margin-bottom: 25px;
     flex: 1;
     overflow-y: auto;
     max-height: 300px;
     padding-right: 5px;
     scrollbar-width: thin;
     scrollbar-color: #866349 transparent;
 }

 .review-content::-webkit-scrollbar {
     width: 8px;
 }

 .review-content::-webkit-scrollbar-track {
     background: transparent;
 }

 .review-content::-webkit-scrollbar-thumb {
     background-color: rgba(134, 99, 73, 0.3);
     border-radius: 20px;
     border: 2px solid transparent;
     background-clip: content-box;
     transition: background-color 0.3s;
 }

 .review-content::-webkit-scrollbar-thumb:hover {
     background-color: #866349;
 }

 .review-footer {
     margin-top: auto;
     padding-top: 20px;
     border-top: 1px solid #866349;
     display: flex;
     justify-content: flex-end;
 }

 .love-quote {
     color: var(--secondary-color);
     font-size: 0.95rem;
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 500;
 }

 .mini-reviews {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: var(--border-radius);
     padding: 50px;
     margin: 60px 0;
     border: 1px solid #866349;
     position: relative;
     overflow: hidden;
 }

 .mini-reviews::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--gradient-primary);
 }

 .mini-reviews-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .mini-reviews-title {
     font-size: 1.8rem;
     color: rgb(255, 255, 255);
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
 }

 .mini-reviews-title i {
     color: var(--primary-light);
     font-size: 2rem;
     animation: heartBeat 1.5s ease-in-out infinite;
 }

 @keyframes heartBeat {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 .mini-reviews-subtitle {
     color: rgba(255, 255, 255, 0.8);
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .mini-reviews-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
 }

 .mini-review-card {
     background: rgba(255, 255, 255, 0.03);
     border-radius: 16px;
     padding: 25px;
     transition: var(--transition);
     border: 1px solid #866349;
     display: flex;
     gap: 20px;
     align-items: flex-start;
 }

 .mini-review-card:hover {
     transform: translateY(-5px);
     border-color: #a38574;
     background: rgba(255, 255, 255, 0.05);
 }

 .mini-review-img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid rgba(134, 99, 73, 0.3);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     flex-shrink: 0;
 }

 .mini-review-content {
     flex: 1;
 }















 .mini-review-content p {
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.6;
     margin-bottom: 15px;
     font-size: 1rem;
     font-style: italic;
 }

 .mini-reviewer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 15px;
     border-top: 1px solid rgba(134, 99, 73, 0.3);
 }

 .mini-reviewer-name {
     color: white;
     font-weight: 600;
     font-size: 1rem;
 }

 .mini-review-status {
     color: white;
     font-size: 0.85rem;
     background: var(--primary-color);
     padding: 3px 10px;
     border-radius: 20px;
     border: 1px solid chocolate;
 }

 .engagements {
     margin-top: 50px;
 }

 .engagements-title {
     text-align: center;
     margin-bottom: 40px;
     font-size: 2rem;
     color: white;
 }

 .engagements-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .engagement-card {
     background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(93, 64, 55, 0.05));
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: var(--border-radius);
     padding: 35px;
     border: 1px solid #866349;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

 .engagement-card:hover {
     transform: translateY(-5px);
 }

 .engagement-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 25px;
     position: relative;
     z-index: 1;
 }

 .engagement-text {
     font-size: 1.2rem;
     font-style: italic;
     margin-bottom: 0;
     color: white;
     line-height: 1.6;
     font-weight: 500;
 }

 .engagement-image {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     background: var(--gradient-primary);
     border: 1px solid chocolate;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     animation: pulseRing 2s infinite;
 }

 @keyframes pulseRing {
     0% {
         box-shadow: 0 0 0 0 rgba(134, 99, 73, 0.4);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(134, 99, 73, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(134, 99, 73, 0);
     }
 }

 .ring-icon {
     font-size: 3rem;
     color: white;
     animation: ringFloat 3s ease-in-out infinite;
 }

 @keyframes ringFloat {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-8px) rotate(10deg);
     }
 }

 .contact {
     padding: 100px 0;
     background: var(--light-color);
     position: relative;
 }

 .contact-container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .contact-text {
     margin-bottom: 20px;
 }

 .contact-image-section {
     display: flex;
     flex-direction: column;
     gap: 30px;
     align-items: flex-start;
     height: 100%;
     justify-content: space-between;
 }

 .contact-content {
     display: flex;
     flex-direction: column;
     gap: 40px;
 }

 .contact-info {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start;
 }

 .contact-image img {
     width: 100%;
     max-height: 400px;
     object-fit: contain;
     object-position: center top;

     display: block;
 }

 .contact-image {
     width: 100%;
     max-width: 450px;
     align-self: center;
     flex-grow: 1;
     display: flex;
     justify-content: center;
     align-items: flex-start;
 }

 @media (max-width: 1200px) {
     .contact-container {
         padding: 0 40px;
     }
 }

 @media (max-width: 992px) {
     .contact {
         padding: 80px 0;
     }

     .contact-info {
         grid-template-columns: 1fr;
         gap: 50px;
     }

     .contact-image-section {
         order: -1;
         align-items: center;
         height: auto;
     }

     .contact-image img {
         max-height: 350px;
         object-position: center;
     }

     .contact-image {
         justify-content: center;
         align-items: center;
     }

     .contact-content {
         gap: 35px;
     }
 }

 /* Мобильные устройства (до 768px) */
 @media (max-width: 768px) {
     .contact {
         padding: 60px 0;
     }

     .contact-container {
         padding: 0 25px;
     }

     .contact-info {
         gap: 40px;
     }

     .contact-image-section {
         gap: 25px;
     }

     .contact-image img {
         max-height: 280px;
         object-position: center;
     }

     .contact-content {
         gap: 30px;
     }

     .contact-text {
         margin-bottom: 15px;
     }
 }

 /* Маленькие мобильные (до 480px) */
 @media (max-width: 480px) {
     .contact {
         padding: 50px 0;
     }

     .contact-container {
         padding: 0 20px;
     }

     .contact-info {
         gap: 35px;
     }

     .contact-image-section {
         gap: 20px;
     }

     .contact-image img {
         max-height: 220px;
     }

     .contact-content {
         gap: 25px;
     }
 }

 /* Очень маленькие экраны (до 360px) */
 @media (max-width: 360px) {
     .contact {
         padding: 40px 0;
     }

     .contact-container {
         padding: 0 15px;
     }

     .contact-info {
         gap: 30px;
     }

     .contact-image img {
         max-height: 180px;
     }

     .contact-content {
         gap: 20px;
     }

     .contact-text {
         margin-bottom: 12px;
     }
 }

 .buttons-group {
     display: flex;
     justify-content: center;
     gap: 2rem;
     max-width: 900px;
     margin: 0 auto;
     padding: 2rem;
     padding-top: 60px;

 }

 .action-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     max-width: 350px;
     min-height: 80px;
     padding: 1.5rem 2rem;
     text-decoration: none;
     text-align: center;
     position: relative;
     overflow: hidden;
     cursor: pointer;
     border-radius: var(--border-radius-lg);
     font-family: var(--font-heading);
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--dark-color);
     background: #f5efe9;
     border: 2px solid #866349;
     transition: var(--transition);
     box-shadow: 0 5px 15px rgba(134, 99, 73, 0.1);
 }

 .action-btn span {
     position: relative;
     z-index: 2;
     color: var(--text-color);
     transition: var(--transition-fast);
 }

 .action-btn:hover span {
     transform: scale(1.02);
 }

 .action-btn::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--gradient-primary);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .action-btn:hover::after {
     opacity: 1;
 }

 .action-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 50%;
     height: 100%;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, 0.8),
             transparent);
     transform: skewX(-25deg);
     transition: none;
     z-index: 1;
 }

 .action-btn:hover::before {
     animation: cleanShine 1.2s ease;
 }

 @keyframes cleanShine {
     0% {
         left: -100%;
     }

     100% {
         left: 200%;
     }
 }

 @media (max-width: 768px) {
     .buttons-group {
         flex-direction: column;
         gap: 1rem;
     }

     .action-btn {
         max-width: 100%;
         min-height: 70px;
         font-size: 1.15rem;
     }
 }

 .contact-form {
     grid-column: 2;
     grid-row: 1 / 5;
     background: #F5EFE9;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
     border: 1px solid rgba(0, 0, 0, 0.03);
     position: relative;
     overflow: hidden;
 }

 .contact-form::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 6px;
     background: var(--gradient-primary);
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     font-weight: 600;
     color: var(--dark-color);
     font-size: 0.95rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 16px 20px;
     border: 2px solid #866349;
     border-radius: 12px;
     font-family: inherit;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: #fcfcfc;
     box-sizing: border-box;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #866349;
     background: white;
     box-shadow: 0 0 0 4px rgba(134, 99, 73, 0.1);
 }

 .form-group textarea {
     min-height: 150px;
     resize: vertical;
 }

 .submit-button {
     width: 100%;
     padding: 18px;
     background: var(--gradient-primary);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 1.1rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px rgba(134, 99, 73, 0.2);
     margin-top: 10px;
 }

 .submit-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 25px rgba(134, 99, 73, 0.3);
 }

 @media (max-width: 992px) {
     .contact-info {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .contact-title,
     .contact-description,
     .contact-details,
     .contact-form {
         grid-column: 1;
         grid-row: auto;
     }

     .contact-form {
         padding: 30px 20px;
         margin-top: 20px;
     }
 }

 .footer {
     background: var(--gradient-dark);
     color: white;
     padding: 80px 0 30px;
     position: relative;
     overflow: hidden;
     border-top: 5px solid #866349;
 }

 .footer-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 30px;
     position: relative;
     z-index: 1;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-family: var(--font-heading);
     font-size: 1.8rem;
     font-weight: 700;
     color: white;
 }

 .footer-logo .heart-icon {
     animation: heartBeat 1.5s ease-in-out infinite;
 }

 .footer-tagline {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.8);
     max-width: 600px;
     line-height: 1.6;
 }

 .footer-links {
     display: flex;
     gap: 25px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
     font-weight: 600;
     font-size: 1rem;
     padding: 6px 15px;
     border-radius: 20px;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: white;
     background: rgba(134, 99, 73, 0.2);
 }

 .terms-link {
     background: rgba(134, 99, 73, 0.1);
     color: var(--primary-light) !important;
 }

 .social-links {
     display: flex;
     gap: 20px;
 }

 .social-links a {
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: #866349;
     transform: translateY(-3px);
 }

 .copyright {
     margin-top: 30px;
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.9rem;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     width: 100%;
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     z-index: 9999;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 20px;
     animation: fadeIn 0.3s ease;
 }

 .modal-overlay.active {
     display: flex;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .modal-content {
     background: #ffffff;
     border-radius: var(--border-radius);
     width: 100%;
     max-width: 700px;
     max-height: 90vh;
     overflow: hidden;
     box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
     animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     position: relative;
     border: 1px solid #e0e0e0;
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .modal-header {
     background: var(--gradient-primary);
     color: white;
     padding: 20px 25px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-shrink: 0;
 }

 .modal-title {
     font-size: 1.6rem;
     margin-bottom: 0;
     color: #ffffff;
     font-weight: 700;
 }

 .modal-close {
     background: rgba(255, 255, 255, 0.15);
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     width: 40px;
     height: 40px;
     color: white;
     font-size: 1.2rem;
     cursor: pointer;
     transition: var(--transition);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     margin-left: 15px;
     font-family: inherit;
 }

 .modal-close:hover {
     background: rgba(255, 255, 255, 0.25);
     transform: rotate(90deg);
 }

 .modal-body {
     padding: 25px;
     overflow-y: auto;
     max-height: calc(90vh - 160px);
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
     background: #ffffff;
     color: #000000 !important;
 }

 .modal-body::-webkit-scrollbar {
     width: 6px;
 }

 .modal-body::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.05);
 }

 .modal-body::-webkit-scrollbar-thumb {
     background: #866349;
     border-radius: 3px;
 }

 .terms-section {
     margin-bottom: 25px;
     padding-bottom: 25px;
     border-bottom: 1px solid #e0e0e0;
 }

 .terms-section:last-of-type {
     border-bottom: none;
     margin-bottom: 20px;
     padding-bottom: 20px;
 }

 .terms-section h3 {
     font-size: 1.2rem;
     margin-bottom: 12px;
     color: #000000 !important;
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
 }

 .terms-section h3 i {
     font-size: 1.1rem;
     width: 24px;
     text-align: center;
     color: #866349;
 }

 .terms-section p,
 .terms-section li,
 .terms-section span {
     font-size: 0.95rem;
     line-height: 1.6;
     color: #000000 !important;
     margin-bottom: 10px;
 }

 .terms-section p:last-child {
     margin-bottom: 0;
 }

 .modal-body *:not(i):not(.modal-header *):not(.modal-footer *) {
     color: #000000 !important;
 }

 .terms-confirmation {
     background: #f9f9f9;
     border-radius: 12px;
     padding: 20px;
     margin: 25px 0 15px;
     border: 1px solid #e0e0e0;
 }

 .terms-checkbox {
     display: flex;
     align-items: flex-start;
     cursor: pointer;
     font-size: 0.95rem;
     line-height: 1.5;
     user-select: none;
     position: relative;
     gap: 15px;
     color: #000000 !important;
 }

 .terms-checkbox input {
     position: absolute;
     opacity: 0;
     cursor: pointer;
     height: 0;
     width: 0;
 }

 .checkmark {
     position: relative;
     top: 2px;
     flex-shrink: 0;
     width: 22px;
     height: 22px;
     background: white;
     border: 2px solid #866349;
     border-radius: 6px;
     transition: var(--transition);
 }

 .terms-checkbox:hover .checkmark {
     background: rgba(134, 99, 73, 0.05);
 }

 .terms-checkbox input:checked~.checkmark {
     background: #866349;
     border-color: #866349;
 }

 .checkmark:after {
     content: "";
     position: absolute;
     display: none;
     left: 7px;
     top: 3px;
     width: 6px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

 .terms-checkbox input:checked~.checkmark:after {
     display: block;
 }

 .checkbox-label {
     color: #000000 !important;
     font-weight: 500;
 }

 .modal-footer {
     padding: 20px 25px;
     background: #f9f9f9;
     text-align: center;
     border-top: 1px solid #e0e0e0;
     flex-shrink: 0;
 }

 .modal-agree {
     background: var(--gradient-primary);
     color: white !important;
     border: none;
     padding: 14px 40px;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
     width: 100%;
     box-shadow: var(--shadow);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-family: inherit;
 }

 .modal-agree:hover:not(:disabled) {
     transform: translateY(-2px);
     box-shadow: var(--shadow-hover);
 }

 .modal-agree:disabled {
     background: #cccccc;
     color: #666666 !important;
     cursor: not-allowed;
     opacity: 0.6;
     transform: none !important;
     box-shadow: none !important;
 }

 @media (max-width: 768px) {
     .modal-overlay {
         padding: 10px;
         align-items: flex-end;
     }

     .modal-content {
         max-height: 85vh;
         border-radius: 20px 20px 0 0;
         animation: slideUpMobile 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     }

     .modal-header {
         padding: 18px 20px;
         position: sticky;
         top: 0;
         z-index: 2;
     }

     .modal-title {
         font-size: 1.4rem;
     }

     .modal-body {
         padding: 20px;
         max-height: calc(85vh - 140px);
         background: #ffffff;
         color: #000000 !important;
     }

     .terms-section h3,
     .terms-section p,
     .terms-section li,
     .terms-section span {
         color: #000000 !important;
     }

     .modal-footer {
         padding: 15px 20px;
         background: #ffffff;
         border-top: 1px solid #e0e0e0;
         padding-bottom: max(15px, env(safe-area-inset-bottom));
     }
 }

 .reviewer-avatar {
     width: 60px;
     height: 60px;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .avatar-image {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     background-color: #f0f0f0;
     border: 3px solid #fff;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 .mini-review-avatar {
     width: 70px;
     height: 70px;
     margin-right: 20px;
     flex-shrink: 0;
 }

 @media (min-width: 1201px) {
     .container {
         padding: 0 40px;
     }

     .reviews-carousel {
         padding: 0 80px;
     }

     .carousel-prev {
         left: -80px;
     }

     .carousel-next {
         right: -80px;
     }
 }

 @media (max-width: 1200px) {
     .container {
         padding: 0 25px;
     }

     h1 {
         font-size: 3rem;
     }

     h2 {
         font-size: 2.5rem;
     }

     .reviews-carousel {
         padding: 0 50px;
     }

     .carousel-prev {
         left: -50px;
     }

     .carousel-next {
         right: -50px;
     }
 }

 @media (max-width: 992px) {
     h1 {
         font-size: 2.5rem;
     }

     h2 {
         font-size: 2.2rem;
     }

     h3 {
         font-size: 1.8rem;
     }

     .hero {
         padding: 150px 0 100px;
     }

     .about,
     .reviews,
     .contact {
         padding: 100px 0;
     }

     .about-content,
     .contact-container {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .review-card {
         min-height: 380px;
     }

     .image-frame {
         height: 400px;
     }

     .reviews-carousel {
         padding: 0 30px;
     }

     .carousel-prev {
         left: -30px;
     }

     .carousel-next {
         right: -30px;
     }

     .mini-reviews {
         padding: 40px;
         margin: 40px 0;
     }
 }

 @media (max-width: 768px) {
     .container {
         padding: 0 20px;
     }

     .nav-links {
         display: none;
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background: white;
         flex-direction: column;
         padding: 20px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         gap: 15px;
         z-index: 999;
     }

     .nav-links a {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 18px 20px;
         text-decoration: none;
         color: #333;
         font-size: 17px;
         font-weight: 600;
         background: #f8f9fa;
         border: 1px solid chocolate;
         border-radius: 10px;
         transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
         position: relative;
     }

     /* Стрелка справа */
     .nav-links a::after {
         content: "›";
         font-size: 24px;
         font-weight: normal;
         color: chocolate;
         margin-left: 10px;
         transition: transform 0.3s ease;
     }

     .nav-links.active {
         display: flex;
     }

     .menu-toggle {
         display: flex;
     }

     .hero-title {
         font-size: 2.2rem;
     }

     h2 {
         font-size: 2rem;
     }

     h3 {
         font-size: 1.6rem;
     }

     .hero {
         padding: 120px 0 80px;
     }

     .about,
     .reviews,
     .contact {
         padding: 80px 0;
     }

     .section-header {
         margin-bottom: 40px;
     }

     .section-title {
         font-size: 2.2rem;
     }

     .reviews-carousel {
         margin: 40px 0 50px;
         padding: 0;
     }

     .carousel-prev,
     .carousel-next {
         display: none !important;
     }

     .reviewer-img {
         width: 60px;
         height: 60px;
     }

     .review-card {
         padding: 25px 20px;
         min-height: 350px;
     }

     .review-header {
         flex-direction: column;
         gap: 15px;
     }

       .review-date {
        align-self: flex-start;
        position: absolute;
        top: 400px;
        right: 18px;
    }

     .mini-reviews {
         padding: 30px 20px !important;
         margin: 40px 0 !important;
         border-radius: 12px;
     }

     .mini-reviews-header {
         margin-bottom: 30px !important;
     }

     .mini-reviews-title {
         font-size: 1.5rem !important;
         flex-direction: column;
         gap: 8px;
     }

     .mini-reviews-title i {
         font-size: 1.8rem !important;
     }

     .mini-reviews-subtitle {
         font-size: 1rem !important;
         padding: 0 10px;
     }

     .mini-reviews-container {
         grid-template-columns: 1fr !important;
         gap: 20px !important;
         padding: 0 5px;
     }

     .mini-review-card {
         flex-direction: column !important;
         align-items: center !important;
         text-align: center !important;
         padding: 25px 20px !important;
         gap: 15px !important;
         border-radius: 12px;
     }

     .mini-review-img {
         width: 70px;
         height: 70px;
         margin-right: 0;
     }

     .mini-review-content blockquote p {
         font-size: 1rem !important;
         margin-bottom: 20px !important;
     }

     .mini-reviewer {
         flex-direction: column !important;
         gap: 8px !important;
         padding-top: 15px !important;
     }

     .mini-reviewer-name {
         font-size: 1.1rem !important;
     }

     .mini-review-status {
         font-size: 0.9rem !important;
         padding: 4px 12px !important;
     }

     .contact-form {
         padding: 30px 20px;
     }

     .contact-item {
         padding: 15px;
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }

     .modal-overlay {
         padding: 10px;
         align-items: flex-end;
     }

     .modal-content {
         max-height: 85vh;
         border-radius: 20px 20px 0 0;
         animation: slideUpMobile 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     }

     @keyframes slideUpMobile {
         from {
             opacity: 0;
             transform: translateY(100%);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

     .modal-header {
         padding: 18px 20px;
         position: sticky;
         top: 0;
         z-index: 2;
     }

     .modal-title {
         font-size: 1.4rem;
     }

     .modal-close {
         width: 36px;
         height: 36px;
         font-size: 1.1rem;
     }

     .modal-body {
         padding: 20px;
         max-height: calc(85vh - 140px);
     }

     .terms-section {
         margin-bottom: 20px;
         padding-bottom: 20px;
     }

     .terms-section h3 {
         font-size: 1.1rem;
         gap: 8px;
         flex-wrap: wrap;
     }

     .terms-section h3 i {
         font-size: 1rem;
     }

     .terms-section p {
         font-size: 0.92rem;
         line-height: 1.55;
     }

     .terms-confirmation {
         padding: 15px;
         margin: 20px 0 10px;
     }

     .terms-checkbox {
         font-size: 0.92rem;
         gap: 12px;
     }

     .checkmark {
         width: 20px;
         height: 20px;
         top: 1px;
     }

     .modal-footer {
         padding: 15px 20px;
         position: sticky;
         bottom: 0;
         background: white;
         border-top: 1px solid var(--gray);
     }

     .modal-agree {
         padding: 14px 30px;
         font-size: 0.95rem;
     }

     .reviews-carousel::after {
         content: '← Swipe →';
         display: block;
         text-align: center;
         color: rgba(255, 255, 255, 0.7);
         font-size: 0.9rem;
         margin-top: 15px;
         font-weight: 500;
         letter-spacing: 1px;
         animation: swipeHint 2s ease-in-out infinite;
     }

     @keyframes swipeHint {

         0%,
         100% {
             opacity: 0.7;
         }

         50% {
             opacity: 1;
         }
     }
 }

 @media (max-width: 576px) {
     .container {
         padding: 0 15px;
     }

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     .hero {
         padding: 100px 0 60px;
     }

     .about,
     .reviews,
     .contact {
         padding: 60px 0;
     }

     .hero-title {
         font-size: 1.8rem;
     }

     .hero-subtitle {
         font-size: 1rem;
     }

     .cta-button {
         padding: 14px 30px;
         font-size: 1rem;
         width: 100%;
         justify-content: center;
     }

     .reviews-carousel {
         margin: 30px 0 40px;
     }

     .carousel-indicators {
         gap: 8px;
         margin-top: 25px;
     }

     .carousel-indicator {
         width: 10px;
         height: 10px;
     }

     .review-card {
         padding: 20px 15px;
         min-height: 320px;
     }

     .reviewer-img {
         width: 50px;
         height: 50px;
     }

     .reviewer-name {
         font-size: 1.3rem;
     }

     .review-content p {
         font-size: 0.95rem;
     }

     .modal-overlay {
         padding: 0;
     }

     .modal-content {
         max-height: 100vh;
         border-radius: 0;
         height: 100vh;
     }

     .modal-body {
         max-height: calc(100vh - 130px);
     }

     .modal-header {
         padding: 15px 20px;
     }

     .modal-title {
         font-size: 1.3rem;
     }

     .terms-section h3 {
         font-size: 1rem;
     }

     .terms-section p {
         font-size: 0.9rem;
     }

     .terms-confirmation {
         padding: 12px;
     }

     .terms-checkbox {
         font-size: 0.9rem;
     }

     .modal-agree {
         padding: 12px 25px;
         font-size: 0.93rem;
     }

     .footer {
         padding: 60px 0 20px;
     }

     .footer-logo {
         font-size: 1.5rem;
     }

     .footer-links {
         gap: 15px;
     }

     .footer-links a {
         padding: 5px 12px;
         font-size: 0.9rem;
     }

     .social-links a {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }

     .copyright {
         font-size: 0.8rem;
     }
 }

 @media (max-width: 400px) {

     .reviewer-img,
     .mini-review-img {
         width: 50px;
         height: 50px;
     }

     .avatar-placeholder {
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
     }

     .carousel-indicator {
         width: 8px;
         height: 8px;
     }

     .engagement-card {
         padding: 25px 15px;
     }

     .engagement-text {
         font-size: 1rem;
     }

     .engagement-image {
         width: 100px;
         height: 100px;
     }

     .ring-icon {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 768px) and (orientation: landscape) {
     .hero {
         padding: 100px 0 60px;
     }

     .mini-reviews-container {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
         gap: 15px !important;
     }

     .mini-review-card {
         min-height: 200px;
     }

     .modal-overlay {
         align-items: center;
         padding: 10px;
     }

     .modal-content {
         max-height: 90vh;
         border-radius: var(--border-radius);
     }
 }

 @media (min-width: 769px) and (max-width: 1024px) {
     .modal-overlay {
         padding: 20px;
     }

     .modal-content {
         max-width: 90%;
     }

     .mini-reviews {
         padding: 40px 30px !important;
     }

     .mini-reviews-container {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
         gap: 20px !important;
     }

     .mini-review-card {
         padding: 25px !important;
     }
 }

 .modal-overlay.closing {
     animation: fadeOut 0.3s ease forwards;
 }

 .modal-overlay.closing .modal-content {
     animation: slideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
 }

 @keyframes fadeOut {
     from {
         opacity: 1;
     }

     to {
         opacity: 0;
     }
 }

 @keyframes slideDown {
     from {
         transform: translateY(0);
         opacity: 1;
     }

     to {
         transform: translateY(30px);
         opacity: 0;
     }
 }

 @media (hover: none) and (pointer: coarse) {
     .mini-review-card {
         transition: transform 0.2s ease;
     }

     .mini-review-card:active {
         transform: scale(0.98);
     }

     .mini-review-status {
         padding: 5px 12px !important;
     }

     .cta-button:active,
     .submit-button:active,
     .modal-agree:active:not(:disabled) {
         transform: scale(0.98);
     }
 }

 @media (prefers-color-scheme: dark) {
     .modal-content {
         background: var(--dark-light);
         color: white;
     }

     .terms-section h3 {
         color: var(--primary-light);
     }

     .terms-section p {
         color: rgba(255, 255, 255, 0.9);
     }

     .terms-confirmation {
         background: rgba(255, 255, 255, 0.05);
         border-color: rgba(255, 255, 255, 0.1);
     }

     .checkmark {
         background: rgba(255, 255, 255, 0.1);
     }

     .checkbox-label {
         color: white;
     }

     .modal-body::-webkit-scrollbar-track {
         background: rgba(255, 255, 255, 0.05);
     }
 }

 .carousel-indicator:focus,
 .carousel-prev:focus,
 .carousel-next:focus,
 .modal-close:focus,
 .modal-agree:focus,
 .terms-checkbox input:focus~.checkmark,
 .cta-button:focus,
 .submit-button:focus {
     outline: 2px solid var(--primary-light);
     outline-offset: 2px;
 }

 ::selection {
     background-color: rgba(134, 99, 73, 0.3);
     color: var(--dark-color);
 }

 ::-moz-selection {
     background-color: rgba(134, 99, 73, 0.3);
     color: var(--dark-color);
 }

 @media (-webkit-min-device-pixel-ratio: 2),
 (min-resolution: 192dpi) {
     .avatar-image {
         background-size: cover;
     }
 }

 @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
         animation-duration: 0.01ms !important;
         animation-iteration-count: 1 !important;
         transition-duration: 0.01ms !important;
         scroll-behavior: auto !important;
     }
 }

 .avatar-image:empty::before {
     content: '';
     display: block;
     width: 100%;
     height: 100%;
     background: var(--gradient-primary);
     border-radius: 50%;
 }

 @media print {

     .modal-overlay,
     .menu-toggle,
     .carousel-prev,
     .carousel-next,
     .social-links {
         display: none !important;
     }

     body {
         background: white !important;
         color: black !important;
     }

     .header {
         position: static;
         box-shadow: none;
     }
 }

 .dual-sections-premium {
     padding: 60px 0;
     background-color: var(--light-gray);
     font-family: var(--font-body);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .premium-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
 }

 .premium-card {
     background: rgba(255, 255, 255, 0.03);
     /* Фон как в мини-карточках */
     padding: 40px 30px;
     border: 1px solid #866349;
     /* Граница как в .mini-review-card */
     border-radius: 16px;
     /* Скругление как в .mini-review-card */
     transition: transform 0.4s ease, box-shadow 0.4s ease;
     text-align: center;
     position: relative;
     overflow: hidden;
     min-height: 280px;
     display: flex;
     align-items: center;
 }

 .card-inner {
     width: 100%;
 }

 .premium-card:hover {
     transform: translateY(-5px);
     /* Эффект как в .mini-review-card:hover */
     border-color: #a38574;
     /* Цвет границы при наведении как в мини-карточках */
     background: rgba(255, 255, 255, 0.05);
     /* Фон при наведении как в мини-карточках */
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     /* Тень при наведении */
 }

 .premium-title {
     margin: 0 0 20px 0;
     font-family: var(--font-heading);
     font-size: 28px;
     line-height: 1.3;
     font-weight: 700;
 }

 .premium-title a {
     text-decoration: none;
     color: var(--dark-color);
     position: relative;
     display: inline-block;
     padding-bottom: 5px;
     transition: color 0.3s ease;
 }

 .premium-title a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 50%;
     background-color: #866349;
     transition: width 0.3s ease, left 0.3s ease;
 }

 .premium-title a:hover {
     color: #866349;
 }

 .premium-title a:hover::after {
     width: 100%;
     left: 0;
 }

 .premium-divider {
     width: 50px;
     height: 2px;
     background-color: #866349;
     margin: 0 auto 25px auto;
 }

 .premium-text {
     font-size: 16px;
     line-height: 1.7;
     color: #41352d;
     max-width: 500px;
     margin: 0 auto;
 }

 @media (max-width: 850px) {
     .premium-grid {
         grid-template-columns: 1fr;
         gap: 25px;
     }

     .dual-sections-premium {
         padding: 40px 0;
     }

     .premium-card {
         padding: 30px 20px;
         min-height: 240px;
     }

     .premium-title {
         font-size: 24px;
     }

     .container {
         padding: 0 20px;
     }
 }

 @media (min-width: 1400px) {
     .container {
         max-width: 1300px;
     }

     .premium-card {
         padding: 45px 35px;
     }
 }