/* ===== CSS Variables - Luxury Premium Style ===== */
:root {
    --primary-color: #c9a227;
    --primary-glow: rgba(201, 162, 39, 0.4);
    --secondary-color: #1a1a2e;
    --dark-color: #0a0a14;
    --darker-color: #050508;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #777;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.3);
    --border-radius: 15px;
    --font-elegant: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

/* Dark Mode Variables */
body.dark-mode {
    --light-color: #121218;
    --text-color: #e0e0e0;
    --text-light: #999;
    --white: #1a1a24;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Dark Mode Toggle ===== */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.dark-mode-toggle i {
    font-size: 1.2rem;
    color: var(--primary-color);
    position: absolute;
    transition: var(--transition);
}

.dark-mode-toggle .fa-sun {
    opacity: 0;
    transform: rotate(-90deg);
}

.dark-mode-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0deg);
}

body.dark-mode .dark-mode-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0deg);
}

body.dark-mode .dark-mode-toggle .fa-moon {
    opacity: 0;
    transform: rotate(90deg);
}

/* ===== Floating Contact Buttons ===== */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.floating-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    z-index: 10;
}

.floating-main-btn:hover {
    transform: scale(1.1);
}

.floating-main-btn i {
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.floating-contacts.active .floating-main-btn i {
    transform: rotate(45deg);
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0;
    transform: scale(0) translateY(20px);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.floating-btn span {
    position: absolute;
    right: 60px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.floating-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.floating-contacts.active .floating-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.floating-contacts.active .floating-btn:nth-child(2) { transition-delay: 0.1s; }
.floating-contacts.active .floating-btn:nth-child(3) { transition-delay: 0.2s; }
.floating-contacts.active .floating-btn:nth-child(4) { transition-delay: 0.3s; }

.floating-call {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-location {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

/* ===== Chat/Help Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.chat-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.chat-toggle i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    overflow: hidden;
}

body.dark-mode .chat-popup {
    background: var(--secondary-color);
}

.chat-widget.active .chat-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-close:hover {
    color: var(--primary-color);
}

.chat-body {
    padding: 20px;
}

.chat-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

body.dark-mode .faq-item {
    background: var(--dark-color);
}

.faq-item:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.faq-item span {
    font-size: 0.9rem;
}

.faq-item i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.faq-item:hover i {
    transform: translateX(5px);
}

.faq-answer {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .chat-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.chat-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: var(--dark-color);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.chat-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: var(--dark-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.glow-btn {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px var(--primary-glow);
    }
    to {
        box-shadow: 0 0 25px var(--primary-glow), 0 0 40px rgba(201, 162, 39, 0.2);
    }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo i {
    font-size: 2rem;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}

/* ===== Enhanced Language Toggle ===== */
.lang-toggle-enhanced {
    margin-left: 25px;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.lang-option {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    z-index: 1;
    position: relative;
}

.lang-option.active {
    color: var(--dark-color);
}

.lang-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.4);
}

.lang-switch[data-active="en"] .lang-slider {
    left: calc(50%);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s backwards;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-family: var(--font-elegant);
}

.hero-content > p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.4s backwards;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item i {
    color: var(--primary-color);
    margin-left: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

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

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    font-family: var(--font-elegant);
    letter-spacing: 2px;
}

body.dark-mode .section-title {
    color: var(--white);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ===== Services Section ===== */
.services {
    background: var(--white);
}

body.dark-mode .services {
    background: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.service-card {
    background: var(--light-color);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    height: 100%;
    justify-content: flex-start;
}

body.dark-mode .service-card {
    background: var(--secondary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-color: rgba(201, 162, 39, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

body.dark-mode .service-card h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card .price {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: auto;
}

/* ===== Before/After Gallery ===== */
.gallery-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.gallery-section .section-title {
    color: var(--white);
}

.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ba-slider-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    cursor: ew-resize;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

.ba-before .ba-label {
    left: 20px;
}

.ba-after .ba-label {
    right: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: ew-resize;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: var(--primary-color);
}

.ba-handle-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.ba-handle-circle i {
    color: var(--dark-color);
    font-size: 1.2rem;
}

/* ===== Team Section ===== */
.team {
    padding: 100px 0;
    background: var(--light-color);
}

body.dark-mode .team {
    background: var(--dark-color);
}

.team-featured {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.team-card-large {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
    min-width: 350px;
    max-width: 400px;
}

body.dark-mode .team-card-large {
    background: var(--secondary-color);
}

.team-card-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.team-card-large .team-image {
    width: 100%;
    height: 450px;
    background: #1a1a1a;
    overflow: hidden;
}

.team-card-large .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.team-card-large:hover .team-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-card-large .team-info {
    padding: 30px 25px;
}

.team-card-large .team-info h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

body.dark-mode .team-card-large .team-info h3 {
    color: var(--white);
}

.team-card-large .team-role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.team-description {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.team-quote {
    font-style: italic;
    font-size: 1.3rem !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    padding: 20px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    margin-top: 10px;
}

/* ===== Reviews/Testimonials Section ===== */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.reviews .section-title {
    color: var(--white);
}

.reviews-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 50px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    margin: 0;
    padding: 0;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Google Review Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 3px;
}

.review-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.review-card:hover .review-icon {
    transform: scale(1.1) rotate(5deg);
}

.review-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.review-text {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.review-link {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.review-card:hover .review-link i {
    transform: translateX(5px);
}

.reviews-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.reviews-cta .btn i {
    margin-right: 10px;
}

/* ===== Instagram Section ===== */
.instagram-section {
    background: var(--white);
    padding: 100px 0;
}

body.dark-mode .instagram-section {
    background: var(--secondary-color);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.9), rgba(212, 175, 55, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay i {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.instagram-cta {
    text-align: center;
}

/* ===== Schedule Section ===== */
.schedule {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.schedule .section-title {
    color: var(--white);
}

.schedule-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table td {
    padding: 15px 10px;
    font-size: 1rem;
}

.schedule-table td:first-child {
    font-weight: 500;
}

.schedule-table td:first-child i {
    color: var(--primary-color);
    margin-right: 10px;
}

.schedule-table td:last-child {
    text-align: right;
}

.status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status.open {
    background: rgba(40, 167, 69, 0.2);
    color: #5cb85c;
}

.status.closed {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
}

.current-status {
    text-align: center;
}

.status-indicator {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.status-indicator h3 {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 10px;
}

.status-indicator p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
}

.status-indicator.closed p {
    color: var(--danger);
}

/* ===== Appointment Section ===== */
.appointment {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.appointment .section-title {
    color: var(--white);
}

.appointment-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Barber Selection */
.barber-selection {
    margin-bottom: 40px;
}

.barber-selection h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.barber-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.barber-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.barber-card:hover,
.barber-card.selected {
    border-color: var(--primary-color);
    background: rgba(201, 162, 39, 0.1);
    box-shadow: var(--shadow-gold);
}

.barber-card .barber-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

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

.barber-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: var(--dark-color);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.barber-badge i {
    font-size: 0.6rem;
}

.barber-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.barber-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.barber-rating .stars i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.barber-rating span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.barber-exp {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.barber-specialty {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.barber-select-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.barber-card.selected .barber-select-indicator {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.barber-select-indicator i {
    color: var(--dark-color);
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.barber-card.selected .barber-select-indicator i {
    opacity: 1;
}

/* Appointment Form */
.appointment-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
    background: var(--secondary-color);
    color: var(--white);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Time Slots Container */
.time-slots-container {
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-slots-container h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.urgency-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend-item.available i { color: var(--success); }
.legend-item.limited i { color: var(--warning); }
.legend-item.booked i { color: var(--danger); }

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.time-slot.available {
    background: rgba(40, 167, 69, 0.15);
    color: #5cb85c;
    border-color: rgba(40, 167, 69, 0.3);
}

.time-slot.limited {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.time-slot.booked {
    background: rgba(220, 53, 69, 0.1);
    color: rgba(255, 107, 107, 0.5);
    cursor: not-allowed;
}

.time-slot.available:hover,
.time-slot.limited:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.time-slot.selected {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.urgency-message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 193, 7, 0.15));
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.urgency-message i {
    color: #ff6b6b;
    font-size: 1.3rem;
}

.urgency-message span {
    color: var(--warning);
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== Location Section ===== */
.location {
    background: var(--light-color);
}

body.dark-mode .location {
    background: var(--dark-color);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

body.dark-mode .location-card {
    background: var(--secondary-color);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.branch-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

body.dark-mode .branch-title {
    color: var(--white);
}

.location-card .location-info {
    margin-bottom: 20px;
}

.info-card {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

body.dark-mode .info-card {
    background: var(--dark-color);
}

.info-card:hover {
    background: rgba(201, 162, 39, 0.1);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3px;
    font-weight: 600;
}

.info-card p {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

body.dark-mode .info-card p {
    color: var(--white);
}

.location-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.location-card .map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalFadeIn 0.4s ease;
}

body.dark-mode .modal-content {
    background: var(--secondary-color);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-content .fa-check-circle {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 25px;
}

.modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

body.dark-mode .modal-content h2 {
    color: var(--white);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.modal-content .note {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-style: italic;
}

#appointment-details {
    background: var(--light-color);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: left;
}

body.dark-mode #appointment-details {
    background: var(--dark-color);
}

#appointment-details p {
    margin-bottom: 10px;
    color: var(--text-color);
}

#appointment-details strong {
    color: var(--secondary-color);
}

body.dark-mode #appointment-details strong {
    color: var(--primary-color);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .schedule-wrapper {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-featured {
        flex-direction: column;
        gap: 40px;
    }
    
    .team-description {
        text-align: center;
        padding: 0 20px;
    }
    
    .team-quote {
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        border-radius: 0 0 10px 10px;
    }
    
    .before-after-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        backdrop-filter: blur(20px);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .lang-toggle-enhanced {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .lang-option {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content > p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .floating-contacts {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .chat-popup {
        width: 290px;
    }
    
    .dark-mode-toggle {
        top: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .appointment-form {
        padding: 25px;
    }
    
    .schedule-table td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }
    
    .team-card-large {
        min-width: 100%;
        max-width: 100%;
    }
    
    .team-card-large .team-image {
        height: 350px;
    }
    
    .ba-slider {
        height: 350px;
    }
    
    .barber-cards {
        grid-template-columns: 1fr;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}
