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

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --bg-light: #fafafa;
    --bg-dark: #000000;
    --gold-gradient: linear-gradient(135deg, #d4a574 0%, #c08552 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: clamp(14px, 2vw, 16px);
    width: 100%;
    position: relative;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 80px);
    box-sizing: border-box;
    width: 100%;
}

/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #d4a574 50%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 3s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.logo:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Cinzel', serif;
}

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

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

.nav-link-cta {
    background: var(--gold-gradient);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 25px;
}

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

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
    padding: 10px;
    margin: -10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-out infinite alternate;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 165, 116, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.8);
}

.particle:nth-child(1) { left: 10%; animation: float 8s infinite ease-in-out; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation: float 10s infinite ease-in-out; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation: float 12s infinite ease-in-out; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation: float 9s infinite ease-in-out; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation: float 11s infinite ease-in-out; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation: float 13s infinite ease-in-out; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 70%; animation: float 10s infinite ease-in-out; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation: float 14s infinite ease-in-out; animation-delay: 3.5s; }
.particle:nth-child(9) { left: 15%; animation: float 9s infinite ease-in-out; animation-delay: 4.5s; }
.particle:nth-child(10) { left: 85%; animation: float 11s infinite ease-in-out; animation-delay: 5s; }

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

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

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: auto;
    max-width: 280px;
    min-height: 44px;
    box-sizing: border-box;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-light);
    box-shadow: 0 5px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(212, 165, 116, 0.3); }
    50% { box-shadow: 0 5px 40px rgba(212, 165, 116, 0.8), 0 0 60px rgba(212, 165, 116, 0.4); }
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.5);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: max(40px, env(safe-area-inset-bottom, 24px));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    z-index: 60;
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-light);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 28px;
    border-radius: 12px;
    animation: fadeUp 0.6s ease forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Cinzel', serif;
    white-space: nowrap;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.service-card {
    position: relative;
    background: white;
    background-size: cover;
    background-position: center;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-sizing: border-box;
    max-width: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    transition: var(--transition);
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(212, 165, 116, 0.5), rgba(212, 165, 116, 0.85));
}

.service-card.featured {
    background: var(--gold-gradient);
    color: var(--text-light);
    transform: scale(1.05);
}

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

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Featured Work Section */
.featured-work {
    padding: 120px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-bottom: 60px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

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

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

.featured-item-large {
    grid-column: span 3;
    grid-row: span 2;
}

.featured-item-wide {
    grid-column: span 3;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

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

.featured-category {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.about-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop: 3D carousel */
@media (min-width: 769px) {
    .carousel-3d {
        width: 100%;
        height: 100%;
        position: relative;
        perspective: 900px;
    }
    
    .carousel-3d-inner {
        width: 100%;
        height: 100%;
        position: absolute;
        transform-style: preserve-3d;
        animation: rotate3d 20s linear infinite;
    }
    
    .carousel-3d-inner:hover {
        animation-play-state: paused;
    }
    
    .carousel-3d-item {
        position: absolute;
        width: 250px;
        height: 320px;
        left: 50%;
        top: 50%;
        margin-left: -125px;
        margin-top: -160px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
}

/* Mobile: Simple 2D carousel */
@media (max-width: 768px) {
    .about-image {
        height: 320px;
    }
    
    .carousel-3d {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .carousel-3d-inner {
        display: flex;
        width: 100%;
        height: 100%;
        position: relative;
        animation: mobileCarouselSlide 18s ease-in-out infinite;
    }
    
    .carousel-3d-item {
        position: absolute;
        width: 85%;
        max-width: 300px;
        height: 90%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        opacity: 0;
        transition: opacity 0.8s ease;
    }
    
    .carousel-3d-item:nth-child(1) { animation: mobileItemFade 18s ease-in-out infinite; }
    .carousel-3d-item:nth-child(2) { animation: mobileItemFade 18s ease-in-out 3s infinite; }
    .carousel-3d-item:nth-child(3) { animation: mobileItemFade 18s ease-in-out 6s infinite; }
    .carousel-3d-item:nth-child(4) { animation: mobileItemFade 18s ease-in-out 9s infinite; }
    .carousel-3d-item:nth-child(5) { animation: mobileItemFade 18s ease-in-out 12s infinite; }
    .carousel-3d-item:nth-child(6) { animation: mobileItemFade 18s ease-in-out 15s infinite; }
    
    @keyframes mobileItemFade {
        0%, 16.66%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
        2%, 14.66% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }
}

.carousel-3d-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Position items around a cylinder */
.carousel-3d-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(280px);
}

.carousel-3d-item:nth-child(2) {
    transform: rotateY(60deg) translateZ(280px);
}

.carousel-3d-item:nth-child(3) {
    transform: rotateY(120deg) translateZ(280px);
}

.carousel-3d-item:nth-child(4) {
    transform: rotateY(180deg) translateZ(280px);
}

.carousel-3d-item:nth-child(5) {
    transform: rotateY(240deg) translateZ(280px);
}

.carousel-3d-item:nth-child(6) {
    transform: rotateY(300deg) translateZ(280px);
}

@keyframes rotate3d {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 20px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

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

.contact-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #e8b87d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    transition: var(--transition);
}

.contact-detail:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.contact-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-detail p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 3px 0;
}

.contact-detail p a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail p a:hover {
    color: #c89a5c;
    text-decoration: underline;
}

.followers-count {
    font-size: 13px;
    color: #999;
}

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

.social-link {
    padding: 14px 28px;
    background: #fff;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #f0f0f0;
}

.social-link svg {
    color: #d4a574;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, #d4a574 0%, #e8b87d 100%);
    color: #fff;
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.social-link:hover svg {
    color: #fff;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
}

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


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    opacity: 0.7;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .featured-item-large {
        grid-column: span 2;
    }
    
    .featured-item-wide {
        grid-column: span 2;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 3vw, 16px);
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 320px;
    }
    
    .scroll-indicator {
        bottom: 30px;
        font-size: 10px;
    }
    
    /* Section Headers */
    .section-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(28px, 6vw, 36px);
        white-space: normal;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Services */
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: 280px;
        padding: 30px 20px;
    }
    
    /* Featured Work */
    .featured-work {
        padding: 80px 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 15px;
    }
    
    .featured-item-large,
    .featured-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Stats */
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: clamp(36px, 10vw, 48px);
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* About Section - Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 320px;
        order: -1;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    /* Contact Section */
    .contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-details {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .contact-detail {
        gap: 15px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-detail h4 {
        font-size: 16px;
    }
    
    .contact-detail p {
        font-size: 14px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Form */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
    }
    
    .footer-content p {
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 420px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        padding: 15px 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: clamp(24px, 6vw, 28px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        min-height: 250px;
    }
    
    .about-image {
        height: 280px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 13px;
    }
}
