/* ============================================
   کلینیک زیبایی دکتر الهام فلاحتی
   Elegant Beauty Clinic - Premium Design
   ============================================ */

/* === CSS Variables === */
:root {
    /* Color Palette - Luxury Rose Gold Theme */
    --primary-color: #B76E79;
    --primary-dark: #8B4D57;
    --primary-light: #E8B4BC;
    --secondary-color: #2C3E50;
    --accent-gold: #D4AF37;
    --accent-cream: #FFF8F0;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A5A;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --border-light: #E5E7EB;
    --shadow-soft: 0 4px 20px rgba(183, 110, 121, 0.15);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-display: 'Playfair Display', 'Vazirmatn', serif;
    --font-body: 'Vazirmatn', sans-serif;
    --font-english: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* === Font Face - Vazirmatn (loaded via CDN in header.php) === */
/* @import removed - using jsdelivr CDN instead for better performance */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Selection === */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(183, 110, 121, 0.5);
    color: var(--white);
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #C9A227);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    color: var(--white);
}

/* === Preloader === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.preloader-logo i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Progress bar preloader */
.preloader-progress {
    width: 200px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}

.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
}

@keyframes progress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

/* === Touch Ripple Effect === */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* === Smooth Image Loading === */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0;
}

img.lazy.loaded {
    opacity: 1;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* === Navigation === */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link span {
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

/* Hide icons in desktop */
@media (min-width: 993px) {
    .nav-link > i:not(.fa-chevron-down) {
        display: none;
    }
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    direction: ltr;
}

.header-phone i {
    color: var(--primary-color);
}

/* === Mega Menu === */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown .dropdown-toggle i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    width: 800px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(20px);
    transition: var(--transition-medium);
    z-index: 1000;
    margin-top: 15px;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--white);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px;
}

.mega-menu-column {
    padding: 0 15px;
    border-left: 1px solid var(--border-light);
}

.mega-menu-column:last-child {
    border-left: none;
}

.mega-menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-title i {
    font-size: 0.9rem;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    color: var(--text-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: var(--transition-fast);
    position: relative;
}

.mega-menu-column ul li a::before {
    content: '←';
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-fast);
    color: var(--primary-color);
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.mega-menu-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-footer {
    background: var(--accent-cream);
    padding: 20px 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    text-align: center;
}

/* ==========================================
   Mobile Menu - Professional Design
   ========================================== */

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: var(--accent-cream);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    background: var(--primary-light);
}

.mobile-toggle-inner {
    width: 24px;
    height: 18px;
    position: relative;
}

.mobile-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-medium);
    right: 0;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
    width: 100%;
}

.mobile-toggle span:nth-child(2) {
    top: 8px;
    width: 70%;
}

.mobile-toggle span:nth-child(3) {
    top: 16px;
    width: 50%;
}

.mobile-toggle.active span {
    background: var(--primary-color);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    width: 100%;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    width: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 999;
        transition: var(--transition-medium);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

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

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-logo-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

    .mobile-menu-logo-text {
        font-weight: 700;
        font-size: 1rem;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        color: var(--white);
        font-size: 1.25rem;
        cursor: pointer;
        transition: var(--transition-fast);
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    /* Mobile Navigation List */
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        overflow-y: auto;
        flex: 1;
        padding-bottom: 100px;
    }

    .nav-list > li {
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link i {
        color: var(--primary-color);
    }

    .nav-link.active {
        background: var(--accent-cream);
        color: var(--primary-color);
        border-right: 4px solid var(--primary-color);
    }

    /* Mobile Dropdown */
    .has-dropdown .dropdown-toggle {
        justify-content: space-between;
    }

    .has-dropdown .dropdown-toggle i {
        width: 30px;
        height: 30px;
        background: var(--accent-cream);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        transition: var(--transition-medium);
    }

    .has-dropdown.active .dropdown-toggle i {
        background: var(--primary-color);
        color: var(--white);
        transform: rotate(180deg);
    }

    /* Mobile Mega Menu */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease;
        background: var(--off-white);
    }

    .mega-menu::before {
        display: none;
    }

    .has-dropdown.active .mega-menu {
        max-height: 2000px;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .mega-menu-column {
        border-left: none;
        padding: 0;
    }

    .mega-menu-title {
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        background: rgba(183, 110, 121, 0.08);
        font-size: 0.9rem;
    }

    .mega-menu-column ul {
        padding: 0;
    }

    .mega-menu-column ul li {
        margin: 0;
    }

    .mega-menu-column ul li a {
        padding: 14px 20px 14px 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.9rem;
    }

    .mega-menu-column ul li a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--primary-light);
        border-radius: 50%;
        opacity: 1;
        transform: none;
        position: absolute;
        right: 20px;
    }

    .mega-menu-column ul li a:hover {
        background: rgba(183, 110, 121, 0.05);
        padding-right: 40px;
    }

    .mega-menu-column ul li a:hover::before {
        background: var(--primary-color);
    }

    .mega-menu-footer {
        padding: 15px 20px;
        border-radius: 0;
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: var(--white);
        border-top: 1px solid var(--border-light);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-contact {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

    .mobile-menu-contact a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border-radius: var(--radius-sm);
        font-size: 0.85rem;
        font-weight: 600;
        transition: var(--transition-fast);
    }

    .mobile-menu-contact .btn-call {
        background: var(--primary-color);
        color: var(--white);
    }

    .mobile-menu-contact .btn-whatsapp {
        background: #25D366;
        color: var(--white);
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .mobile-menu-social a {
        width: 40px;
        height: 40px;
        background: var(--accent-cream);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1rem;
        transition: var(--transition-fast);
    }

    .mobile-menu-social a:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    /* Header CTA */
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Body scroll lock */
    body.menu-open {
        overflow: hidden;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .main-nav {
        width: 100%;
        max-width: 100%;
    }
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 50%, var(--primary-light) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(183, 110, 121, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

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

.hero-image-main {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-floating-card.card-1 {
    top: 20%;
    left: -30px;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.floating-card-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.floating-card-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183, 110, 121, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
}

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

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B76E79' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-light);
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-link i {
    transition: var(--transition-fast);
}

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

/* === About Section === */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 8px solid var(--white);
    box-shadow: var(--shadow-medium);
}

.about-experience {
    position: absolute;
    top: 30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.about-experience-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-right: 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183, 110, 121, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.about-title {
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-feature-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* === Doctor Section === */
.doctor {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1A252F 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.doctor::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(183, 110, 121, 0.15) 0%, transparent 60%);
}

.doctor-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-image {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

.doctor-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
}

.doctor-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), #C9A227);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.doctor-badge-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.doctor-badge-text span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.doctor-content .section-badge {
    background: rgba(183, 110, 121, 0.2);
}

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

.doctor-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    margin-bottom: 35px;
}

.doctor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
}

.credential-item i {
    color: var(--accent-gold);
}

/* === Gallery Section === */
.gallery {
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(183, 110, 121, 0.9), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: var(--transition-medium);
}

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

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

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

.gallery-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* === Testimonials Section === */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    right: 10%;
    font-size: 400px;
    font-family: serif;
    color: var(--primary-light);
    opacity: 0.2;
    line-height: 1;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    font-style: italic;
}

/* === CTA Section === */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

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

.cta .btn-gold:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* === Contact Section === */
.contact {
    background: var(--off-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1A252F 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--white);
}

.contact-info-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(183, 110, 121, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-detail-content p,
.contact-detail-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    direction: ltr;
    display: inline-block;
}

.contact-detail-content a:hover {
    color: var(--primary-light);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

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

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

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

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

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

.footer-brand .logo-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '←';
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

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

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.7;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    direction: ltr;
    display: inline-block;
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

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

.footer-legal a:hover {
    color: var(--primary-light);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-medium);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* === WhatsApp Button === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-medium);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: var(--transition-medium);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

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

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .about-container,
    .doctor-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        margin-bottom: 40px;
    }
    
    .about-image-secondary {
        left: auto;
        right: 20px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-row: span 1;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
    }
}

/* === Animations === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* === Print Styles === */
@media print {
    .header,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .preloader {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .section {
        padding: 20px 0;
    }
}

/* === Utility Classes === */
.d-lg-none {
    display: block;
}

@media (min-width: 993px) {
    .d-lg-none {
        display: none !important;
    }
}

.d-none {
    display: none !important;
}

.d-lg-block {
    display: none;
}

@media (min-width: 993px) {
    .d-lg-block {
        display: block !important;
    }
}

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

.w-100 {
    width: 100%;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.g-3 {
    gap: 1rem;
}
