/* ==================== Root Variables - Luxury Beauty Theme ==================== */
:root {
    /* Primary Beauty Colors - Rose Gold & Pink */
    --primary-color: #d4477e;
    --primary-light: #ff6b98;
    --primary-dark: #a83560;
    --secondary-color: #ffb6c1;
    --accent-color: #d4af37;
    /* Gold */
    --accent-light: #f4e4c1;

    /* Text Colors */
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --text-white: #ffffff;
    --text-gold: #d4af37;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-cream: #fff8f0;
    --bg-light-pink: #fff5f7;
    --bg-rose: #ffe4e9;
    --bg-dark: #2d2d2d;

    /* Border and Shadows */
    --border-color: #f0d7de;
    --border-gold: #d4af37;
    --shadow-sm: 0 2px 4px rgba(212, 71, 126, 0.08);
    --shadow-md: 0 4px 12px rgba(212, 71, 126, 0.12);
    --shadow-lg: 0 10px 24px rgba(212, 71, 126, 0.15);
    --shadow-xl: 0 20px 40px rgba(212, 71, 126, 0.18);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==================== Container ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.98) 100%);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--border-gold);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    order: 1;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(212, 71, 126, 0.3));
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    order: 2;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    order: 4;
}

/* LTR navbar adjustments */
body.ltr .logo {
    order: 1;
}

body.ltr .nav-menu {
    order: 2;
}

body.ltr .language-switcher {
    order: 3;
    margin-right: 1.5rem;
    margin-left: 0;
}

body.ltr .hamburger {
    order: 4;
}

/* RTL navbar (default) */
body.rtl .logo {
    order: 1;
}

body.rtl .nav-menu {
    order: 2;
}

body.rtl .language-switcher {
    order: 3;
    margin-left: 1.5rem;
    margin-right: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    left: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    right: 0;
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== Language Switcher ==================== */
.language-switcher {
    position: relative;
    margin-left: 1.5rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--bg-white), var(--bg-cream));
    border: 2px solid var(--border-gold);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

.language-btn:hover {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-white));
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.language-btn .flag {
    font-size: 1.25rem;
}

.language-btn .lang-name {
    font-size: 0.95rem;
}

.language-btn i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-white);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--bg-light-pink);
}

.language-option.active {
    background: linear-gradient(135deg, var(--bg-rose), var(--bg-light-pink));
    font-weight: 600;
}

.language-option .flag {
    font-size: 1.25rem;
}

.language-option .lang-name {
    flex: 1;
    text-align: right;
    font-size: 0.95rem;
}

.language-option i.fa-check {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* LTR Direction Adjustments */
body.ltr .language-switcher {
    margin-left: 0;
    margin-right: 1.5rem;
}

body.ltr .language-dropdown {
    right: auto;
    left: 0;
}

body.ltr .language-option .lang-name {
    text-align: left;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffe4e9 0%, #fff5f7 50%, #fff8f0 100%);
    position: relative;
    color: var(--text-dark);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-10px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 152, 0.15), transparent 70%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(212, 71, 126, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-top: 0.75rem;
    background: linear-gradient(90deg, #ff6b98, #ffb6c1, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-white);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1.6s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* ==================== Section Styles ==================== */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-light-pink);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* ==================== About Section ==================== */
.about {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-gold);
    transform: translateX(-5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(212, 71, 126, 0.9), transparent);
    padding: 2rem;
}

.overlay-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 600;
}

.overlay-text i {
    font-size: 2.25rem;
    color: var(--accent-color);
}

/* ==================== Services Section ==================== */
.services {
    background: linear-gradient(135deg, var(--bg-light-pink) 0%, var(--bg-rose) 50%, var(--bg-light-pink) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
}

.service-icon i {
    font-size: 2.75rem;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    margin-top: 1.25rem;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.service-list li:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.service-list li:last-child {
    border: none;
}

.service-list li::before {
    content: '✨';
    margin-left: 0.75rem;
    font-size: 1.1rem;
}

/* ==================== Why Us Section ==================== */
.why-us {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 50%, var(--bg-light-pink) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.why-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-icon i {
    font-size: 3.25rem;
    color: var(--text-white);
}

.why-card h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== Contact Section ==================== */
.contact {
    background: linear-gradient(135deg, var(--bg-light-pink) 0%, var(--bg-rose) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(-8px);
    border-color: var(--accent-color);
}

.info-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.info-icon i {
    font-size: 1.75rem;
    color: var(--text-white);
}

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-text h4 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
}

.form-group {
    position: relative;
    margin-bottom: 1.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.25rem 1.1rem 4rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light-pink);
    text-align: right;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-gold);
    background: var(--bg-white);
}

.form-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35rem;
}

.form-group textarea+i {
    top: 1.25rem;
    transform: none;
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d3d3d 100%);
    color: var(--text-white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-section p {
    color: var(--bg-cream);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: var(--text-white);
    font-size: 1.3rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: var(--bg-cream);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-right: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bg-cream);
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--bg-cream);
}

/* ==================== Scroll to Top Button ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 992px) {

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 74px);
        background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== Additional Animations ==================== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 3s infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 1000px 100%;
}