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

/* Root Variables - Premium Gold & White Theme */
:root {
    --primary-color: #F4B942;
    --primary-dark: #E8A317;
    --primary-light: #F7C96B;
    --secondary-color: #FEFDF8;
    --accent-color: #FF8C00;
    --success-color: #28A745;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    --text-white: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #FEFDF8;
    --bg-tertiary: #F9F8F4;
    --border-color: #E8E5DE;
    --border-light: #F2F0EA;
    --shadow-sm: 0 2px 8px rgba(244, 185, 66, 0.15);
    --shadow-md: 0 8px 25px rgba(244, 185, 66, 0.25);
    --shadow-lg: 0 15px 35px rgba(244, 185, 66, 0.35);
    --shadow-xl: 0 25px 50px rgba(244, 185, 66, 0.45);
    --gradient-primary: linear-gradient(135deg, #F4B942 0%, #E8A317 100%);
    --gradient-secondary: linear-gradient(135deg, #FEFDF8 0%, #F4B942 100%);
    --gradient-hero: linear-gradient(135deg, 
        rgba(244, 185, 66, 0.95) 0%, 
        rgba(232, 163, 23, 0.9) 50%, 
        rgba(255, 140, 0, 0.95) 100%
    );
    --gradient-navbar: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(254, 253, 248, 0.95) 100%
    );
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-black);
}
h2 { 
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-bold);
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 180px;
}

.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: left 0.5s;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.25rem;
    min-width: 220px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Logo Styles */
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 
        var(--shadow-md),
        0 0 0 6px rgba(244, 185, 66, 0.1);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 
        var(--shadow-lg),
        0 0 0 8px rgba(244, 185, 66, 0.2),
        0 0 20px rgba(244, 185, 66, 0.6);
    border-color: var(--primary-light);
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(244, 185, 66, 0.15);
    z-index: 9999;
    transition: var(--transition);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(244, 185, 66, 0.15);
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    position: relative;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    position: relative;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.logo-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    background-clip: padding-box;
    opacity: 0;
    transition: var(--transition);
}

.brand-logo:hover .logo-ring {
    opacity: 1;
    transform: rotate(360deg);
}

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

.brand-name {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.brand-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

/* Navigation Center */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    background: rgba(244, 185, 66, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(244, 185, 66, 0.2);
    transform: translateY(-1px);
}

.nav-icon {
    font-size: 0.9rem;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.85rem 1.4rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.phone-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.phone-number {
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    z-index: 10001;
    position: relative;
}

.mobile-toggle:hover {
    background: rgba(244, 185, 66, 0.15);
    transform: scale(1.05);
}

.toggle-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-toggle:hover .toggle-line {
    background: var(--primary-color);
    box-shadow: 0 2px 6px rgba(244, 185, 66, 0.3);
}

/* Enhanced Mobile Toggle Active State */
.mobile-toggle.active {
    background: rgba(244, 185, 66, 0.2);
}

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

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

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

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

/* Enhanced Mobile Menu Blur Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(244, 185, 66, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 50%,
        rgba(232, 163, 23, 0.1) 100%
    );
    backdrop-filter: blur(15px) saturate(1.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Enhanced Mobile Menu with Animations */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(244, 185, 66, 0.98) 0%, 
        rgba(232, 163, 23, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(1.3);
    box-shadow: 
        0 10px 40px rgba(244, 185, 66, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 35px;
    text-align: center;
    z-index: 10000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-button {
    display: inline-block;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--primary-color);
    padding: 22px 45px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(244, 185, 66, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

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

.mobile-menu-button:hover::before {
    left: 100%;
}

.mobile-menu-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(244, 185, 66, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-light);
}

.mobile-menu-button i {
    font-size: 1.5rem;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover i {
    transform: scale(1.1);
    animation: pulse 1.5s infinite;
}

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

/* Hero styles moved to hero.css for optimization */

/* Hero feature styles moved to hero.css */

/* All hero styles moved to hero.css for optimization */

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

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

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

.service-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.service-features span:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(-5px);
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    min-width: 60px;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: scale(1.05) rotate(5deg);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 0 50px rgba(244, 185, 66, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 8px rgba(244, 185, 66, 0.2);
    animation: logoRotateFloat 6s ease-in-out infinite;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.about-logo:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 
        0 0 80px rgba(244, 185, 66, 0.8),
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 12px rgba(244, 185, 66, 0.3);
    border-color: rgba(255, 255, 255, 1);
}

@keyframes logoRotateFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        box-shadow: 
            0 0 50px rgba(244, 185, 66, 0.6),
            0 20px 40px rgba(0, 0, 0, 0.3),
            inset 0 0 0 8px rgba(244, 185, 66, 0.2);
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.02); 
        box-shadow: 
            0 0 60px rgba(244, 185, 66, 0.7),
            0 25px 45px rgba(0, 0, 0, 0.35),
            inset 0 0 0 10px rgba(244, 185, 66, 0.25);
    }
    50% { 
        transform: translateY(-20px) rotate(-3deg) scale(1.05); 
        box-shadow: 
            0 0 70px rgba(244, 185, 66, 0.8),
            0 30px 50px rgba(0, 0, 0, 0.4),
            inset 0 0 0 12px rgba(244, 185, 66, 0.3);
    }
    75% { 
        transform: translateY(-10px) rotate(8deg) scale(1.03); 
        box-shadow: 
            0 0 65px rgba(244, 185, 66, 0.75),
            0 28px 48px rgba(0, 0, 0, 0.38),
            inset 0 0 0 11px rgba(244, 185, 66, 0.28);
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(-10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    min-width: 50px;
}

.contact-icon .fa-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
    transform: translateX(-5px);
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.contact-form-container {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

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

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 2rem;
    color: white;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-service-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
    cursor: default;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-links a .fa-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links a:hover .fa-instagram {
    -webkit-text-fill-color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-primary);
    margin: 15% auto;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    text-align: center;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-header i {
    font-size: 4rem;
    color: var(--primary-color);
}

.modal-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
        position: relative;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-phone-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly size */
        border-radius: 22px;
    }
    
    .phone-details {
        display: none;
    }
    
    .phone-icon-wrapper {
        padding: 0.4rem;
        min-width: 32px;
        min-height: 32px;
    }
    
    .brand-img {
        width: 45px;
        height: 45px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-location {
        font-size: 0.75rem;
    }
    
    .mobile-toggle {
        display: flex !important;
        min-width: 44px; /* Touch-friendly size */
        min-height: 44px;
        justify-content: center;
        align-items: center;
        z-index: 100001;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-center {
        display: none;
    }
    
    /* Mobile Navigation Styles */
    .navbar {
        padding: 0;
        box-shadow: 0 2px 15px rgba(244, 185, 66, 0.15);
    }
    
    /* Mobile Menu Animation */
    .nav-menu {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }
    
    /* Enhanced touch targets for mobile */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Hide desktop nav and show mobile toggle */
    .desktop-nav {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 10001;
    }

    /* Hero responsive styles moved to hero.css */
    
    .title-letter {
        animation: none;
    }
    
    .particles {
        display: none;
    }
    
    .floating-circle {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0.6rem 0.75rem;
        gap: 0.75rem;
    }
    
    .brand-img {
        width: 38px;
        height: 38px;
    }
    
    .brand-name {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .brand-location {
        font-size: 0.7rem;
    }
    
    .nav-phone-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        min-height: 40px;
        border-radius: 20px;
    }
    
    .phone-icon-wrapper {
        padding: 0.3rem;
        min-width: 28px;
        min-height: 28px;
    }
    
    .mobile-toggle {
        min-width: 40px;
        min-height: 40px;
        padding: 6px;
    }
    
    .toggle-line {
        width: 22px;
        height: 2.5px;
    }
    
    /* Mobile menu responsive adjustments */
    .mobile-menu {
        padding: 20px;
    }
    
    .mobile-menu-button {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .about-feature {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .image-placeholder {
        width: 300px;
        height: 300px;
    }

    .about-logo {
        width: 250px;
        height: 250px;
        border-width: 4px;
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Performance Optimizations */
.hero, .services, .about, .contact {
    will-change: transform;
}

/* Print Styles */
@media print {
    .navbar {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Old hero styles removed - now in hero.css */

/* All hero styles moved to hero.css for better file organization */

/* Touch-friendly improvements and accessibility */
.mobile-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* Smooth transitions for mobile menu */
.nav-menu.mobile-active .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(244, 185, 66, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.mobile-menu-close:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.mobile-menu-close i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-close:hover i {
    color: white;
}

/* Prevent text selection on mobile toggle */
.mobile-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Enhanced mobile menu animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.nav-menu.mobile-active.show {
    animation: slideInFromRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Mobile menu item stagger animation */
.nav-menu.mobile-active.show .nav-item {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInStagger 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-menu.mobile-active.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.mobile-active.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
.nav-menu.mobile-active.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
.nav-menu.mobile-active.show .nav-item:nth-child(4) { animation-delay: 0.25s; }

@keyframes slideInStagger {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Safe area for modern mobile devices */
@supports (padding: max(0px)) {
    .nav-container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .nav-menu.mobile-active {
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Dark mode support for mobile menu */
@media (prefers-color-scheme: dark) {
    .nav-menu.mobile-active {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(40, 40, 40, 0.95));
        border-left-color: var(--primary-light);
    }
    
    .nav-menu.mobile-active .nav-link {
        color: #FFFFFF;
        border-bottom-color: rgba(244, 185, 66, 0.2);
    }
    
    .nav-menu.mobile-active .nav-link:hover,
    .nav-menu.mobile-active .nav-link.active {
        background: rgba(244, 185, 66, 0.15);
        color: var(--primary-light);
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu.mobile-active {
        width: 240px;
        padding: 60px 0 15px 0;
    }
    
    .nav-menu.mobile-active .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
} 