* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: #d6b36f;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

/* Hidden elements initially */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon animations */
.service-icon-box,
.feature-card i,
.member-avatar {
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-icon-box.visible,
.feature-card.visible i,
.team-member-simple.visible .member-avatar {
    opacity: 1;
    transform: scale(1);
}

/* Delayed animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Navigation */
.navbar {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid rgba(214, 179, 111, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.65) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid rgba(214, 179, 111, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    box-shadow: 0 4px 15px rgba(214, 179, 111, 0.4);
    transition: all 0.3s ease;
    display: block;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(214, 179, 111, 0.6);
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #d6b36f;
}

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

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 80px 30px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-main-image-box {
    margin: 40px auto 50px;
    display: block;
    text-align: center;
}

.hero-main-image {
    width: 100%;
    max-width: 700px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    border: none;
    animation: float 6s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

.hero-consultation-button-wrapper {
    margin: 30px auto;
    text-align: center;
}

.hero-consultation-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d6b36f, #c19d56);
    color: #000;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(214, 179, 111, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(214, 179, 111, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-consultation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-consultation-button:hover::before {
    left: 100%;
}

.hero-consultation-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(214, 179, 111, 0.6);
    background: linear-gradient(135deg, #e8c380, #d6b36f);
    border-color: rgba(214, 179, 111, 0.6);
}

.hero-consultation-button:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-consultation-button i {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(214, 179, 111, 0.3);
    filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.5));
}

.hero-slogans {
    display: inline-block;
    background: rgba(214, 179, 111, 0.3);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(214, 179, 111, 0.8);
    border-radius: 25px;
    padding: 30px 50px;
    box-shadow: 0 8px 30px rgba(214, 179, 111, 0.4), 
                inset 0 0 20px rgba(214, 179, 111, 0.15);
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    text-shadow: none;
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d6b36f;
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: none;
}


/* Stats Section */
.stats-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(30, 30, 30, 0.98) 100%);
    border-top: 4px solid rgba(214, 179, 111, 0.6);
    border-bottom: 4px solid rgba(214, 179, 111, 0.6);
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(20, 20, 20, 0.9) 100%);
    padding: 50px 30px;
    border-radius: 25px;
    border: 3px solid rgba(214, 179, 111, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 179, 111, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(30, 30, 30, 1) 100%);
    border-color: #d6b36f;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(214, 179, 111, 0.4);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.3), rgba(214, 179, 111, 0.3));
    border: 3px solid rgba(214, 179, 111, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(214, 179, 111, 0.3);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.5);
}

.stat-card.visible .stat-icon-wrapper {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.5), rgba(214, 179, 111, 0.5));
    border-color: #d6b36f;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(214, 179, 111, 0.5);
}

.stat-icon-wrapper i {
    font-size: 2.5rem;
    color: #d6b36f;
    filter: drop-shadow(0 0 10px rgba(214, 179, 111, 0.6));
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(214, 179, 111, 0.3);
    margin-bottom: 15px;
}

.stat-text {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Section Modern */
.section-modern {
    padding: 100px 30px;
}

.section-modern.alt-bg {
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.05) 0%, rgba(214, 179, 111, 0.03) 50%, rgba(214, 179, 111, 0.05) 100%);
    border-top: 2px solid rgba(214, 179, 111, 0.2);
    border-bottom: 2px solid rgba(214, 179, 111, 0.2);
}

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

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Features */
.features-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
    border: 3px solid rgba(214, 179, 111, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(214, 179, 111, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 179, 111, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
    border-color: #d6b36f;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(214, 179, 111, 0.4);
}

.feature-card i {
    font-size: 3rem;
    color: #d6b36f;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(214, 179, 111, 0.5));
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card p {
    color: #ccc;
    font-size: 1rem;
}

/* Services */
.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(30, 30, 30, 0.98) 100%);
    border: 3px solid rgba(214, 179, 111, 0.3);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(214, 179, 111, 0.15);
    position: relative;
    overflow: visible;
    min-height: auto;
}

.service-item:hover {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 1) 0%, 
        rgba(40, 40, 40, 1) 100%);
    border-color: rgba(214, 179, 111, 0.7);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(214, 179, 111, 0.4);
}

.service-description {
    max-height: 0;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    margin-top: 0;
    transform: translateY(-10px);
}

.service-item.visible .service-description {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.service-description p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.service-item:hover .service-description p {
    opacity: 1;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.2), rgba(214, 179, 111, 0.2));
    border: 3px solid rgba(214, 179, 111, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(214, 179, 111, 0.3);
    transition: all 0.4s ease;
}

.service-item:hover .service-icon-box {
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.4), rgba(214, 179, 111, 0.4));
    border-color: #d6b36f;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(214, 179, 111, 0.5);
}

.service-icon-box i {
    font-size: 2rem;
    color: #d6b36f;
    filter: drop-shadow(0 0 5px rgba(214, 179, 111, 0.5));
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(214, 179, 111, 0.3);
}

/* Team */
.team-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member-simple {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
    border: 3px solid rgba(214, 179, 111, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(214, 179, 111, 0.2);
    position: relative;
}

.team-member-simple:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
    border-color: #d6b36f;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(214, 179, 111, 0.4);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.3), rgba(214, 179, 111, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d6b36f;
    box-shadow: 0 5px 20px rgba(214, 179, 111, 0.4);
}

.member-avatar i {
    font-size: 2.5rem;
    color: #d6b36f;
    filter: drop-shadow(0 0 10px rgba(214, 179, 111, 0.6));
}

.team-member-simple h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.team-member-simple p {
    color: #ccc;
    font-size: 1rem;
}

/* Contact */
.contact-info-simple {
    max-width: 700px;
    margin: 0 auto;
}

.contact-item-simple {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
    border: 3px solid rgba(214, 179, 111, 0.5);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(214, 179, 111, 0.2);
}

.contact-item-simple:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
    border-color: #d6b36f;
    box-shadow: 0 20px 50px rgba(214, 179, 111, 0.4);
}

.contact-item-simple i {
    font-size: 2rem;
    color: #d6b36f;
    margin-top: 5px;
    filter: drop-shadow(0 0 10px rgba(214, 179, 111, 0.5));
}

.contact-item-simple h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-item-simple p {
    color: #ccc;
    line-height: 1.8;
}

.contact-item-simple p[dir="ltr"] {
    direction: ltr;
    text-align: left;
    unicode-bidi: embed;
}

/* Form */
.form-modern {
    max-width: 800px;
    margin: 0 auto;
}

.form-row-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group-simple label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

.form-group-simple input,
.form-group-simple textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(214, 179, 111, 0.4);
    border-radius: 12px;
    padding: 18px 25px;
    font-size: 1rem;
    color: #1a1a1a;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(214, 179, 111, 0.1);
}

.form-group-simple input:focus,
.form-group-simple textarea:focus {
    outline: none;
    border-color: #d6b36f;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(214, 179, 111, 0.3);
    transform: translateY(-2px);
}

.form-group-simple input::placeholder,
.form-group-simple textarea::placeholder {
    color: #999;
}

.btn-submit {
    background: linear-gradient(135deg, #d6b36f, #d6b36f);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 179, 111, 0.3);
}

.btn-submit i {
    font-size: 1rem;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
    position: relative;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(69, 160, 73, 0.15));
    border: 3px solid rgba(76, 175, 80, 0.6);
    color: #2e7d32;
}

.form-message-error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(229, 57, 53, 0.15));
    border: 3px solid rgba(244, 67, 54, 0.6);
    color: #c62828;
}

.form-message i:first-child {
    font-size: 1.5rem;
}

.form-message span {
    flex: 1;
}

.message-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.message-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer-modern {
    background: linear-gradient(135deg, rgba(214, 179, 111, 0.05), rgba(214, 179, 111, 0.03));
    border-top: 1px solid rgba(214, 179, 111, 0.2);
    padding: 40px 30px;
    text-align: center;
}

.footer-modern p {
    color: #666;
    font-size: 1rem;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #d6b36f;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: #d6b36f;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-consultation-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    .hero-slogans {
        padding: 20px 30px;
    }
    
    .hero-slogan {
        font-size: 1.5rem;
    }
    
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 40px 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(0, 0, 0, 0.95) 100%);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-top: 2px solid rgba(214, 179, 111, 0.6);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-consultation-button {
        font-size: 1rem;
        padding: 14px 30px;
    }
    
    .hero-consultation-button i {
        font-size: 1.2rem;
    }
    
    .hero-slogans {
        padding: 15px 25px;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 50px 15px;
    }
    
    .stats-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 35px 20px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon-wrapper i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
}
