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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-brand {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.1s ease;
    cursor: pointer;
}

.nav-brand h2 {
    color: #8B4513;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.menu-close-btn {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B4513;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border: none;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 69, 19, 0.4);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
    }
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    background: #0a0a0a;
}

.hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 35%);
    animation: fogMove 20s ease-in-out infinite;
    z-index: 2;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0%, transparent 25%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 3;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: brightness(0.6) contrast(1.1);
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.6);
    z-index: -1;
    display: none;
}

/* Show image only if video fails to load */
.hero-bg-video[error] {
    display: none;
}

.hero-bg-video[error] + .hero-bg-primary + .hero-bg-pattern + .hero-bg-gradient + .fog-overlay + .hero-bg-image {
    display: block;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 69, 19, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes fogMove {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateX(10px) translateY(-5px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-5px) translateY(10px) scale(0.95);
        opacity: 0.9;
    }
    75% {
        transform: translateX(-10px) translateY(-8px) scale(1.02);
        opacity: 0.7;
    }
}

.fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
    animation: fogMove 25s ease-in-out infinite reverse;
    z-index: 4;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
}

.hero-content-modern {
    color: white;
    animation: slideInRight 1s ease-out;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

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

.hero-badge-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(139, 69, 19, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 600;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge-premium i {
    font-size: 1.2rem;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-start;
}

.decoration-line {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #8B4513, #FFD700);
    border-radius: 2px;
}

.title-decoration i {
    color: #8B4513;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(139, 69, 19, 0.5));
}

.hero-description-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.icon-item {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-item:hover {
    background: rgba(139, 69, 19, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.icon-item i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.icon-item:hover i {
    color: #FFD700;
}

.hero-actions-modern {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.6);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.btn-glow {
    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.6s;
    z-index: -1;
}

.btn-primary-modern:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
    transform: translateX(-3px);
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInLeft 1s ease-out;
}

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

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-main {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.visual-main:hover {
    transform: rotate(0deg) scale(1.05);
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.visual-main:hover .visual-image {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(160, 82, 45, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visual-main:hover .visual-overlay {
    opacity: 1;
}

.visual-stats {
    position: absolute;
    top: 20px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: statFloat 4s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 2s;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #8B4513;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.visual-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(160, 82, 45, 0.1));
    animation: decorationFloat 6s ease-in-out infinite;
}

.decoration-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes decorationFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-scroll-modern {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    animation: scrollBounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    transition: all 0.3s ease;
}

.hero-scroll-modern:hover .scroll-icon {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.scroll-icon i {
    font-size: 0.8rem;
    animation: scrollArrow 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(2px);
    }
}

/* Legacy Hero Styles (Hidden) */
.hero {
    display: none;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-text-content {
    color: white;
    z-index: 2;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-badge-new i {
    color: #FFD700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.title-highlight {
    display: block;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.btn-hero.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-projects {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.empty-projects i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-projects p {
    font-size: 1.1rem;
    margin: 0;
}

.empty-projects-featured {
    text-align: center;
    padding: 80px 40px;
    color: #95a5a6;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #ddd;
}

.empty-projects-featured i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #8B4513;
    opacity: 0.3;
}

.empty-projects-featured h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.placeholder-image p {
    font-size: 1rem;
    margin: 0;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
}

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

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
}

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

.card-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-1 {
    top: 50px;
    right: 100px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    right: 50px;
    z-index: 2;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    top: 350px;
    right: 150px;
    z-index: 1;
    animation: float 6s ease-in-out infinite 4s;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B4513;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.floating-badge.quality {
    top: 100px;
    left: 50px;
}

.floating-badge.warranty {
    bottom: 100px;
    left: 80px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

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

/* Original Button Styles for Other Sections */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #8B4513;
    color: white;
}

.btn-primary:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

/* Project Categories Section */
.project-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.project-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.project-categories .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.project-categories .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.project-categories .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D);
    border-radius: 2px;
}

.project-categories .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
    animation: categoryFloat 6s ease-in-out infinite;
}

.category-card:nth-child(2) {
    animation-delay: -2s;
}

.category-card:nth-child(3) {
    animation-delay: -4s;
}

.category-card:nth-child(4) {
    animation-delay: -6s;
}

.category-card:nth-child(5) {
    animation-delay: -8s;
}

.category-card:nth-child(6) {
    animation-delay: -10s;
}

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    filter: blur(8px) brightness(0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.category-card[data-category="hotels"]::before {
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card[data-category="residential"]::before {
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card[data-category="commercial"]::before {
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card[data-category="government"]::before {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card[data-category="offices"]::before {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card[data-category="restaurants"]::before {
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card[data-category="entertainment"]::before {
    background-image: url('https://images.unsplash.com/photo-1587280501635-68a0e82cd5ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.category-card:hover {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.02);
}

.category-card:hover::before {
    filter: blur(0px) brightness(0.7);
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(160, 82, 45, 0.6) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(160, 82, 45, 0.3) 100%);
}

.category-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: white;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-content p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.category-stats {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.category-card:hover .category-stats {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.category-stats span {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-categories .section-footer {
    text-align: center;
    margin-top: 50px;
}

.project-categories .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.project-categories .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    color: #333;
}

.features-list i {
    color: #8B4513;
    margin-left: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #8B4513;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #8B4513;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-section ul li {
    padding: 5px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #8B4513;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #8B4513;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #A0522D;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #8B4513;
    margin-left: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    opacity: 0.8;
}

/* Hide/Show Projects */
.project-item.hidden {
    display: none;
}

/* Enhanced Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-layout {
        gap: 60px;
    }
    
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .title-sub {
        font-size: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .nav-contact {
        display: block;
    }
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .hero-bg-video {
        display: block;
        object-fit: cover;
    }
    
    .hero-bg-image {
        display: none;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
    }
    
    .nav-brand {
        display: flex;
        gap: 10px;
        align-items: center;
        flex: 1;
        order: 2;
        justify-content: center;
    }
    
    .nav-brand h2 {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }
    
    .nav-contact {
        display: flex !important;
        order: 1;
        margin-right: auto;
    }
    
    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .hamburger::before {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        width: 280px;
        max-width: 80%;
        text-align: right;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 80px 0 20px 0;
        height: 100vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        z-index: -1;
    }
    
    .menu-close-btn {
        display: block;
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .menu-close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        transform: translateX(100px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 25px;
        font-size: 1.05rem;
        font-weight: 600;
        color: #2c3e50;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(135deg, #8B4513, #A0522D);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        transform: scaleY(1);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(139, 69, 19, 0.05);
        color: #8B4513;
    }
    
    .hamburger.active {
        background: linear-gradient(135deg, #A0522D, #8B4513);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Hero Section Mobile */
    .hero-layout {
        padding: 40px 0;
        min-height: 70vh;
    }
    
    .hero-content-modern {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 2.2rem;
    }
    
    .hero-description-modern {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-badge-premium {
        padding: 12px 20px;
        font-size: 0.85rem;
        margin-bottom: 30px;
    }
    
    .hero-icons {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 20px 10px;
        flex-direction: column;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
        background: linear-gradient(135deg, #8B4513, #A0522D);
    }
    
    .feature-icon i {
        font-size: 1.3rem;
        color: white;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 25px;
    }
    

    
    .decoration {
        display: none;
    }
    
    .hero-particles {
        display: none;
    }
    
    .hero-scroll-modern {
        bottom: 20px;
    }
    
    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        height: 280px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-content h3 {
        font-size: 1.4rem;
    }
    
    /* General Mobile Adjustments */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vm-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .vm-card {
        max-width: 100%;
        width: 100%;
    }
}
    
/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar .container {
        padding: 10px;
    }
    
    .logo {
        height: 32px;
    }
    
    .nav-brand {
        gap: 6px;
    }
    
    .nav-brand h2 {
        font-size: 0.65rem;
        max-width: 140px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    .hero-title-modern {
        font-size: 1.8rem;
    }
    
    .title-sub {
        font-size: 1.6rem;
    }
    
    .hero-badge-premium {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .hero-badge-premium i {
        font-size: 1rem;
    }
    
    .hero-description-modern {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-icons {
        gap: 12px;
    }
    
    .icon-item {
        width: 45px;
        height: 45px;
    }
    
    .icon-item i {
        font-size: 1.1rem;
    }
    
    .category-card {
        height: 280px;
    }
    
    .category-icon {
        width: 65px;
        height: 65px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-content h3 {
        font-size: 1.3rem;
    }
    
    .category-content p {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    .project-categories .section-header h2 {
        font-size: 2rem;
    }
    
    .project-categories .section-header p {
        font-size: 1.05rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Detailed */
.about-detailed {
    padding: 80px 0;
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 0;
    background: #f9f9f9;
}

.vm-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    flex: 0 1 400px;
    max-width: 400px;
}

.vm-card i {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

/* Values */
.values {
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-item i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

/* Team */
.team {
    padding: 80px 0;
    background: #f9f9f9;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member span {
    color: #666;
    font-size: 0.9rem;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 80px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-item.reverse .service-text {
    direction: rtl;
}

.service-text h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: #333;
}

.service-features i {
    color: #8B4513;
    margin-left: 10px;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Process */
.process {
    padding: 80px 0;
    background: #f9f9f9;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

/* Projects Filter */
.projects-filter {
    padding: 40px 0;
    background: #f9f9f9;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #8B4513;
    color: #8B4513;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B4513;
    color: white;
}

/* Projects Gallery Premium */
.projects-gallery-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Projects Counter */
.projects-counter {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-block;
    margin: 0 auto 50px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    display: block;
}

.counter-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Projects Grid Premium */
.projects-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.project-card-premium {
    position: relative;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 500px;
}

.project-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(139, 69, 19, 0.2);
}

.project-image-premium {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-premium:hover .project-image-premium img {
    transform: scale(1.1);
}

.project-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.project-card-premium:hover .project-overlay-premium {
    opacity: 1;
}

.project-title-overlay {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.project-card-premium:hover .project-title-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-desc-overlay {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.15s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-premium:hover .project-desc-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    cursor: pointer;
}

.project-card-premium:hover .project-view-link {
    transform: translateY(0);
    opacity: 1;
}

.project-view-link:hover {
    gap: 15px;
}

.project-view-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    animation: arrowSlide 1.5s ease-in-out infinite;
}

.project-view-link:hover i {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-8px);
    }
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Project Details Page Modal */
.project-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.project-details-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-premium {
    max-width: 1400px;
    margin: 50px auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.project-details-modal.active .modal-content-premium {
    transform: scale(1);
}

.modal-header-premium {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.modal-close-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.modal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.modal-gallery-premium {
    position: relative;
    height: 600px;
    background: #000;
}

.gallery-main-premium {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-main-premium img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-nav-premium {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 19, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-nav-premium:hover {
    background: rgba(139, 69, 19, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev-premium {
    right: 20px;
}

.gallery-next-premium {
    left: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-thumbnails-premium {
    display: flex;
    gap: 15px;
    padding: 30px;
    overflow-x: auto;
    background: #f8f9fa;
}

.thumbnail-premium {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-premium.active {
    border-color: #8B4513;
    transform: scale(1.1);
}

.thumbnail-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body-premium {
    padding: 50px;
}

.project-description-premium {
    margin-bottom: 40px;
}

.section-title-modal {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.description-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.project-features-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box i {
    color: white;
    font-size: 1.3rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.project-specs-premium {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    padding: 50px;
    border-radius: 20px;
    color: white;
    margin-bottom: 40px;
}

.specs-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.spec-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.spec-icon i {
    font-size: 1.8rem;
}

.spec-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-footer-premium {
    padding: 40px 50px;
    background: #f8f9fa;
    text-align: center;
}

.cta-text {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-contact-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-contact-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

/* Project Gallery Modal */
.project-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.project-gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gallery-header {
    padding: 25px 30px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.gallery-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-main {
    display: flex;
    height: 70vh;
}

.gallery-main-image {
    flex: 2;
    position: relative;
    overflow: hidden;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnails {
    flex: 1;
    background: #f8f9fa;
    overflow-y: auto;
    padding: 20px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

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

.thumbnail.active {
    border-color: #8B4513;
    transform: scale(1.05);
}

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

.gallery-info {
    padding: 25px 30px;
    background: white;
    border-top: 1px solid #eee;
}

.gallery-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 69, 19, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gallery-nav:hover {
    background: rgba(139, 69, 19, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Enhanced Hover Effects */
.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.project-item:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card-premium {
        height: 450px;
    }
    
    .project-overlay-premium {
        padding: 20px;
    }
    
    .project-title-overlay {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .project-desc-overlay {
        font-size: 0.85rem;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
    }
    
    .project-view-link {
        font-size: 0.9rem;
    }
    
    .modal-content-premium {
        margin: 20px;
        border-radius: 20px;
    }
    
    .modal-header-premium {
        padding: 30px 20px;
    }
    
    .modal-title-premium {
        font-size: 1.8rem;
    }
    
    .modal-gallery-premium {
        height: 400px;
    }
    
    .modal-body-premium {
        padding: 30px 20px;
    }
    
    .project-features-premium {
        grid-template-columns: 1fr;
    }
    
    .specs-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modal-footer-premium {
        padding: 30px 20px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    color: #000;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-body img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.modal-info {
    padding: 30px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.testimonial-author h5 {
    color: #8B4513;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-info-section h3,
.contact-form-section h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 30px;
}

.contact-items {
    margin-bottom: 40px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #8B4513;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.social-section h4 {
    margin-bottom: 20px;
    color: #333;
}

/* Contact Form */
.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.map-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h4 {
    margin: 0;
    color: #333;
}

.faq-question i {
    color: #8B4513;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* New Sections Styles */

/* Navigation Contact */
.nav-contact {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #8B4513;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.lang-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

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

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #8B4513;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #A0522D;
}

/* Hero Enhancements */
.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.hero-feature i {
    color: #8B4513;
}

.hero-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.experience-badge {
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

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

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f9f9f9;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
}

.featured-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-showcase {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.project-showcase:hover {
    transform: translateY(-10px);
}

.project-showcase img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.project-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.project-category {
    background: #8B4513;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* Testimonials Home */
.testimonials-home {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-home h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-slide p {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.author-info h5 {
    color: #8B4513;
    margin-bottom: 5px;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
}

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

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #A0522D;
}

/* Wood Types */
.wood-types {
    padding: 80px 0;
}

.wood-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.wood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wood-item {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.wood-item:hover {
    transform: translateY(-5px);
}

.wood-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wood-item h4 {
    padding: 20px 20px 10px;
    color: #8B4513;
    font-size: 1.2rem;
}

.wood-item p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #8B4513;
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #8B4513;
}

/* Partners */
.partners {
    padding: 60px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.partners h3 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: partnersSlide 20s linear infinite;
    width: calc(200% + 60px);
}

@keyframes partnersSlide {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
    width: 150px;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 80px;
    justify-content: center;
}

.partner-placeholder i {
    font-size: 1.5rem;
    color: #8B4513;
    transition: color 0.3s ease;
}

.partner-placeholder span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-align: center;
}

.partner-logo:hover .partner-placeholder {
    background: rgba(139, 69, 19, 0.2);
    transform: translateY(-2px);
}

.partner-logo:hover .partner-placeholder i {
    color: #A0522D;
}

.partners-track:hover {
    animation-play-state: paused;
}

/* About Page Specific Styles */

/* Achievements */
.achievements {
    padding: 80px 0;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: white;
}

.achievement-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

/* Timeline */
.timeline {
    padding: 80px 0;
    background: #f9f9f9;
}

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #8B4513;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #8B4513;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h4 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Company Culture */
.company-culture {
    padding: 80px 0;
}

.company-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.culture-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.culture-item:hover {
    transform: translateY(-5px);
}

.culture-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.culture-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.culture-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Team Enhancements */
.member-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.member-social a:hover {
    background: #A0522D;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
    background: #f9f9f9;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 3px solid #8B4513;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B4513;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 30px;
}

.package-price .currency {
    font-size: 1rem;
    color: #8B4513;
    vertical-align: top;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
}

.package-price .period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #8B4513;
    font-size: 0.9rem;
}

/* Quality Standards */
.quality-standards {
    padding: 80px 0;
}

.quality-standards h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.standard-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.standard-item:hover {
    transform: translateY(-5px);
}

.standard-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.standard-icon i {
    font-size: 1.8rem;
    color: white;
}

.standard-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.standard-item p {
    color: #666;
    line-height: 1.6;
}

/* Project Statistics */
.project-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

.project-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.project-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}



/* Enhanced Testimonials */
.testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonials .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials .stars {
    margin-bottom: 15px;
}

.testimonials .stars i {
    color: #FFD700;
    font-size: 1rem;
    margin: 0 2px;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.quick-contact h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.quick-contact-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    cursor: pointer;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    color: inherit;
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quick-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.quick-icon i {
    font-size: 1.5rem;
    color: white;
}

.quick-contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.quick-contact-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
}

.service-areas h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.area-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.area-item:hover {
    transform: translateY(-5px);
}

.area-item i {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.area-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.area-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Recent Project Items */
.recent-project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.recent-project-item:hover {
    background: rgba(139, 69, 19, 0.05);
}

.recent-project-item:last-child {
    border-bottom: none;
}

.recent-project-item .project-info h4 {
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 1rem;
}

.recent-project-item .project-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.project-date {
    font-size: 0.8rem;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .nav-contact {
        display: block;
    }
    
    .nav-menu {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-contact {
        display: none;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse .service-content {
        direction: rtl;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-body img {
        border-radius: 10px 10px 0 0;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-right: 20px;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .timeline-content {
        margin-right: 20px;
        margin-left: 0;
    }
    
    /* Hero Mobile Styles */
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-card {
        width: 200px;
        height: 150px;
    }
    
    .card-1 {
        top: 20px;
        right: 50px;
    }
    
    .card-2 {
        top: 120px;
        right: 20px;
    }
    
    .card-3 {
        top: 220px;
        right: 80px;
    }
    
    .floating-badge {
        display: none;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-body img {
        border-radius: 10px 10px 0 0;
    }
    
    .filter-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .projects-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .modal-gallery {
        height: 50vh;
    }
    
    .modal-details {
        max-height: 45vh;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-counter {
        margin: 0 20px 40px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-details {
        padding: 20px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-right: 20px;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .timeline-content {
        margin-right: 20px;
        margin-left: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wood-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-track {
        gap: 40px;
    }
    
    .partner-logo {
        width: 120px;
    }
    
    .partner-logo img {
        height: 60px;
    }
}
/* Category Card Click Effects */
.category-card.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.category-card.clicked::before {
    filter: blur(2px) brightness(0.5);
}

/* Intersection Observer Animation */
.category-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.category-card:nth-child(1).animate {
    transition-delay: 0.1s;
}

.category-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.category-card:nth-child(3).animate {
    transition-delay: 0.3s;
}

.category-card:nth-child(4).animate {
    transition-delay: 0.4s;
}

.category-card:nth-child(5).animate {
    transition-delay: 0.5s;
}

.category-card:nth-child(6).animate {
    transition-delay: 0.6s;
}

/* Focus Styles for Accessibility */
.category-card:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
    transform: translateY(-15px) scale(1.02);
    animation-play-state: paused;
}

/* Hover Glow Effect */
.category-card::after {
    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;
    z-index: 4;
    pointer-events: none;
}

.category-card:hover::after {
    left: 100%;
}

/* Add styles for no projects message */
.no-projects {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

.no-projects p {
    margin: 0;
    font-style: italic;
}

/* Hide Gemini watermark */
.about-image img[src*="postimg.cc"] {
    position: relative;
    overflow: hidden;
}

.about-image img[src*="postimg.cc"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 30px;
    background: #f8f9fa;
    z-index: 10;
}

/* Success Message Styles */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-message.show .success-content {
    transform: scale(1);
}

.success-content i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.success-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Error Message Styles */
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
}

.error-message.show {
    opacity: 1;
    transform: translateX(0);
}

.error-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.error-content i {
    font-size: 1.5rem;
    color: white;
}

.error-content p {
    margin: 0;
    font-weight: 500;
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

/* Loading Button State */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Form Enhancements */
.contact-form {
    position: relative;
}

.form-group {
    position: relative;
}

.form-group label {
    position: relative;
    z-index: 1;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    color: #8B4513;
}

/* Floating Label Effect */
.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating input,
.form-group.floating textarea {
    padding-top: 20px;
    padding-bottom: 8px;
}

.form-group.floating label {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group.floating input:focus + label,
.form-group.floating textarea:focus + label,
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.85rem;
    color: #8B4513;
    font-weight: 600;
}

/* Contact Info Enhancements */
.contact-item {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(139, 69, 19, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #A0522D;
    transform: scale(1.1);
}

/* Social Links Enhancement */
.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a::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;
}

.social-links a:hover::before {
    left: 100%;
}

/* Map Container Enhancement */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1) 0%, transparent 50%, rgba(139, 69, 19, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover::before {
    opacity: 1;
}

/* Quick Contact Items Enhancement */
.quick-contact-item {
    position: relative;
    overflow: hidden;
}

.quick-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.quick-contact-item:hover::before {
    left: 100%;
}

.quick-contact-item > * {
    position: relative;
    z-index: 1;
}

/* Responsive Enhancements for Contact Page */
@media (max-width: 768px) {
    .success-content {
        padding: 30px 20px;
    }
    
    .success-content i {
        font-size: 3rem;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
    
    .error-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item:hover {
        transform: none;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .quick-contact-item {
        padding: 20px 15px;
    }
    
    .quick-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Why Choose Us Premium Section */
.why-choose-us-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    color: #8B4513;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.section-tag i {
    color: #FFD700;
}

.section-title-premium {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-premium {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.feature-card-premium {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(139, 69, 19, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover .card-glow {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card-premium:hover .card-shine {
    opacity: 1;
    left: 100%;
}

.feature-icon-premium {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card-premium:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.icon-circle i {
    font-size: 2rem;
    color: white;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(139, 69, 19, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #8B4513;
    border: 2px solid rgba(139, 69, 19, 0.2);
}

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

.feature-title-premium {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-desc-premium {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 69, 19, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 600;
}

.feature-stats i {
    color: #27ae60;
    font-size: 0.85rem;
}

.cta-banner-premium {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-banner-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    color: white;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #8B4513;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cta-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.cta-btn-premium i {
    transition: transform 0.3s ease;
}

.cta-btn-premium:hover i {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-premium {
        font-size: 2rem;
    }
    
    .section-subtitle-premium {
        font-size: 1rem;
    }
    
    .features-grid-premium {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-premium {
        padding: 30px 25px;
    }
    
    .cta-banner-premium {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title-premium {
        font-size: 1.8rem;
    }
    
    .feature-icon-premium {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 1.7rem;
    }
    
    .feature-title-premium {
        font-size: 1.3rem;
    }
    
    .feature-desc-premium {
        font-size: 0.95rem;
    }
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.clients h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.clients .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.clients-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.clients-slider::before,
.clients-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to left, transparent, #f8f9fa);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to right, transparent, #f8f9fa);
}

.clients-track {
    display: flex;
    gap: 80px;
    animation: clientsSlide 20s linear infinite;
}

@keyframes clientsSlide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.05), transparent);
    transition: left 0.5s;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.clients-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .clients h3 {
        font-size: 2rem;
    }
    
    .client-logo {
        width: 180px;
        height: 100px;
        padding: 20px;
    }
    
    .clients-track {
        gap: 60px;
    }
}

/* Language Toggle Button */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #8B4513;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.lang-btn:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Hide Google Translate Bar */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* CTA Banner Contact */
.cta-banner-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-banner-text {
    color: white;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-banner-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-banner-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-features {
    list-style: none;
    margin-bottom: 30px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-features i {
    color: #FFD700;
    font-size: 1.2rem;
}

.cta-btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #8B4513;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-banner-image {
    position: relative;
}

.cta-banner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Why Contact Us */
.why-contact-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.why-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139,69,19,0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-contact-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-contact-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-banner-text h2 {
        font-size: 2rem;
    }
    
    .why-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Language Button Override */
.lang-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: white !important;
    color: #8B4513 !important;
    padding: 0 !important;
    border-radius: 8px !important;
    border: 2px solid #8B4513 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    width: 50px !important;
    height: 50px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    gap: 0 !important;
    font-family: 'Cairo', sans-serif !important;
    overflow: hidden !important;
}

.lang-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3) !important;
    background: white !important;
}

.flag-icon {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 768px) {
    .lang-btn {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .lang-btn {
        width: 36px !important;
        height: 36px !important;
    }
}

@media (max-width: 360px) {
    .lang-btn {
        width: 32px !important;
        height: 32px !important;
    }
    
    .logo {
        height: 28px !important;
    }
    
    .nav-brand h2 {
        font-size: 0.6rem !important;
    }
    
    .hamburger {
        padding: 5px !important;
    }
    
    .hamburger span {
        width: 20px !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappRipple 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    max-width: 320px;
    border: 2px solid #25D366;
    z-index: 10000;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    right: 85px !important;
}

.whatsapp-tooltip h4 {
    color: #25D366;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-tooltip h4 i {
    font-size: 1.2rem;
}

.whatsapp-tooltip p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.whatsapp-close {
    position: absolute;
    top: 8px;
    left: 8px;
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: #f0f0f0;
    color: #333;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        right: 70px;
        min-width: 240px;
        padding: 15px 20px;
    }
    
    .whatsapp-tooltip h4 {
        font-size: 1rem;
    }
    
    .whatsapp-tooltip p {
        font-size: 0.85rem;
    }
}
