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

:root {
    --magenta: #E91E8C;
    --magenta-light: #F472B6;
    --magenta-dark: #BE185D;
    --magenta-soft: #FCE7F3;
    --white: #ffffff;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --border-gray: #E5E5E5;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

.container{
    max-width:1280px;
    margin:auto;
    padding:0 clamp(1rem,4vw,2rem);
}

/* ==================== */
/* NAVBAR               */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

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

/* Logo Image Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 45px;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-primary);
}

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

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

.nav-link:hover {
    color: var(--magenta);
}

.market-link {
    color: var(--magenta) !important;
    font-weight: 600;
}

.cart-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.scrolled .cart-btn {
    color: var(--text-primary);
}

.cart-btn:hover {
    color: var(--magenta);
    transform: scale(1.1);
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--magenta);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.nav-btn {
    background: var(--magenta);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--magenta-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--magenta);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    margin-top: 0.5rem;
    border: 1px solid var(--border-gray);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--magenta);
}

.mobile-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid var(--magenta);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-cart-btn:hover {
    background: var(--magenta);
    color: var(--white);
}

.mobile-btn {
    background: var(--magenta);
    color: var(--white);
    padding: 0.875rem;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.mobile-btn:hover {
    background: var(--magenta-dark);
}

/* ==================== */
/* CART SIDEBAR         */
/* ==================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-gray);
    box-shadow: var(--shadow-xl);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--magenta);
    transform: rotate(90deg);
}

.cart-close svg {
    width: 24px;
    height: 24px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    stroke: var(--magenta);
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-gray);
    background: var(--light-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-total span:first-child {
    color: var(--text-secondary);
}

.total-price {
    color: var(--magenta);
    font-size: 1.5rem;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.checkout-btn:hover {
    background: var(--magenta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.continue-shopping:hover {
    color: var(--magenta);
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--magenta-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--magenta);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-gray);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

.qty-value {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.remove-item:hover {
    color: #ef4444;
}

/* ==================== */
/* HERO SLIDER          */
/* ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--white);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease-out;
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(233, 30, 140, 0.2) 100%
    );
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--magenta);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: var(--magenta-light);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    color: var(--white);
}

.hero-tagline {
    display: inline-block;
    color: var(--magenta);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--magenta);
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--magenta);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--magenta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.btn-primary .arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--magenta);
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--magenta);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(233, 30, 140, 0.3);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--magenta);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--magenta);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 4px;
    background: var(--magenta);
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

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

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

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


/* ==================== */
/* SECTION HEADERS      */
/* ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: var(--text-primary);
}

.section-tag {
    display: inline-block;
    color: var(--magenta);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==================== */
/* SERVICES SECTION     */
/* ==================== */
.services {
    padding: 6rem 0;
    background: var(--off-white);
}

/*.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
}*/

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}



.service-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: clamp(1.8rem, 3vw, 2.5rem);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 1 1 clamp(300px, 45%, 500px);
    max-width: clamp(300px, 45%, 550px);
    /*flex: 1 1 320px;
    max-width: 380px;*/
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--magenta-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.2);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

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

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

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--magenta);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--magenta-dark);
    transform: translateX(4px);
}

/* ==================== */
/* PROCESS SECTION      */
/* ==================== */
.process {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--white);
    position: relative;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
}

.process-step {
    flex: 1 1 clamp(260px, 30%, 350px);
    min-width: 280px;
    max-width: 350px;
    position: relative;
    text-align: center;
}

.step-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--magenta-soft);
    line-height: 1;
    margin-bottom: -2rem;
    position: relative;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.step-icon {
    width: clamp(42px, 5vw, 56px);
    height: clamp(42px, 5vw, 56px);
    color: var(--magenta);
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ==================== */
/* PORTFOLIO SECTION    */
/* ==================== */
.portfolio {
    padding: 6rem 0;
    background: var(--off-white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--text-secondary);
    border: 1px solid var(--border-gray);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    flex: 1 1 clamp(240px, 25%, 280px);
    max-width: clamp(240px, 25%, 300px);
    box-shadow: var(--shadow-sm);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.portfolio-overlay h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--magenta);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.view-btn {
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
}

.view-btn:hover {
    background: var(--magenta-dark);
}

.view-more-wrapper{
    text-align:center;
    margin-top:2rem;
}

.hidden-item{
    display:none;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ==================== */
/* LIGHTBOX MODAL STYLES */
/* ==================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content-wrapper {
    position: relative;
    width: 90%;
    height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(233, 30, 140, 0.3);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.modal-caption {
    margin-top: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
    font-family: var(--font-serif);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 140, 0.2);
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--magenta);
    background: rgba(233, 30, 140, 0.4);
    transform: rotate(90deg);
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    padding: 20px;
    background: rgba(233, 30, 140, 0.2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover, .modal-next:hover {
    background: var(--magenta);
    color: var(--white);
}

/* Thumbnail grid in modal (for quick navigation) */
.modal-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    max-width: 80%;
}

.modal-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--transition);
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
    border-color: var(--magenta);
    transform: scale(1.1);
}

/* Counter for images */
.modal-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white);
    background: rgba(233, 30, 140, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

/* ==================== */
/* ABOUT SECTION        */
/* ==================== */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.about-images,
.about-content {
    flex: 1 1 450px;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-img-small {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-small img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--magenta);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-tag {
    margin-bottom: 0.5rem;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--magenta);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}


.feature {
    display: flex;
    flex: 1 1 200px;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature svg {
    width: 20px;
    height: 20px;
    color: var(--magenta);
    flex-shrink: 0;
}

.about-team {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.about-team h4 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-member img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--magenta);
}

.team-info h5 {
    color: var(--text-primary);
    font-size: 1rem;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==================== */
/* TESTIMONIALS         */
/* ==================== */
.testimonials {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.testimonial-card {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.stars {
    color: var(--magenta);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.testimonial-card > p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--magenta);
}

.client-info {
    text-align: left;
}

.client-info h5 {
    color: var(--text-primary);
    font-size: 1rem;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--magenta);
    transform: scale(1.2);
}

/* ==================== */
/* BOOKING SECTION      */
/* ==================== */
.booking {
    padding: 6rem 0;
    background: var(--white);
}

.booking-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.booking-info {
    flex: 1 1 450px;
}

.booking-form-container {
    flex: 1 1 450px;
}

.booking-info .section-tag {
    margin-bottom: 0.5rem;
}

.booking-info .section-title {
    margin-bottom: 1.5rem;
}

.booking-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.booking-feature svg {
    width: 24px;
    height: 24px;
    color: var(--magenta);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.booking-feature h5 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.booking-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info-box {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 1.5rem;
}

.contact-info-box h5 {
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-info-box strong {
    color: var(--magenta);
}

/* Booking Form */
.booking-form-container {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.booking-form h3 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1 1 200px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--magenta);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select option {
    background: var(--white);
    color: var(--text-primary);
}

.submit-btn {
    width: 100%;
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--magenta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

/* ==================== */
/* CONTACT SECTION      */
/* ==================== */
.contact {
    padding: 6rem 0;
    background: var(--off-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    flex: 1 1 270px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.2);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 64px;
    height: 64px;
    color: var(--magenta);
    margin: 0 auto 1.5rem;
}

.contact-card h4 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--magenta);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--magenta-dark);
}

.social-section {
    text-align: center;
}

.social-section h4 {
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2 1 320px;
}

.footer-links {
    flex: 1 1 160px;
}

.footer-newsletter {
    flex: 1.5 1 260px;
}

.footer-logo {
    width: 150px;
    max-height: 60px;
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--magenta);
}

.footer-newsletter h4 {
    color: var(--text-primary);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 50px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--magenta-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--magenta);
}

/* ==================== */
/* MODAL                */
/* ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    z-index: 2001;
    max-width: 400px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--magenta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.success-modal h3 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-close {
    background: var(--magenta);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--magenta-dark);
}




/* ==================== */
/* RESPONSIVE DESIGN - ALL MEDIA SCREENS */
/* Breakpoints: 758px, 640px, 480px, 400px, 350px, 300px */
/* ==================== */

/* Tablet & Small Desktop (max-width: 758px) */
@media screen and (max-width: 758px) {
    /* Navbar */
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 7rem 1.5rem 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .slider-dots {
        right: 1.5rem;
        bottom: 2rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    /* Services Grid */
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.8rem;
    }
    
    /* Process Steps */
    .process-steps {
        gap: 2rem;
    }
    
    .process-step {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
        gap: 1rem;
    }
    
    .portfolio-item {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    /* About Section */
    .about-grid {
        gap: 2rem;
    }
    
    .about-img-small {
        width: 150px;
        right: -1rem;
        bottom: -1rem;
    }
    
    .experience-badge {
        padding: 1rem;
        left: -0.5rem;
        top: -0.5rem;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    /* Booking Grid */
    .booking-grid {
        gap: 2rem;
    }
    
    .booking-form-container {
        padding: 1.8rem;
    }
    
    /* Contact Grid */
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        flex: 1 1 calc(50% - 1rem);
        padding: 1.8rem;
    }
    
    /* Footer */
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-brand {
        flex: 1 1 100%;
    }
    
    .footer-links {
        flex: 1 1 calc(50% - 2rem);
    }
    
    .footer-newsletter {
        flex: 1 1 100%;
    }
    
    /* Lightbox Modal */
    .modal-prev, .modal-next {
        width: 50px;
        height: 50px;
        font-size: 30px;
        padding: 12px;
    }
    
    .modal-thumbnails {
        max-width: 90%;
    }
    
    .modal-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* Mobile Landscape & Small Tablets (max-width: 640px) */
@media screen and (max-width: 640px) {
    /* Container */
    .container {
        padding: 0 1.25rem;
    }
    
    /* Navbar */
    .navbar.scrolled .logo img {
        height: 40px;
    }
    
    .mobile-menu {
        left: 0.75rem;
        right: 0.75rem;
        padding: 1.25rem;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 6rem 1.25rem 2.5rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        margin-bottom: 1rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .stat-num {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        right: 1.25rem;
        gap: 0.5rem;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Services Section */
    .services {
        padding: 4rem 0;
    }
    
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Process Section */
    .process {
        padding: 4rem 0;
    }
    
    .process-step {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .step-number {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: -1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 4rem 0;
    }
    
    .portfolio-filter {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .portfolio-item {
        flex: 1 1 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolio-overlay h4 {
        font-size: 1rem;
    }
    
    /* About Section */
    .about {
        padding: 4rem 0;
    }
    
    .about-images {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-img-small {
        width: 120px;
        right: -0.5rem;
        bottom: -0.5rem;
    }
    
    .experience-badge {
        padding: 0.8rem;
        left: -0.5rem;
        top: -0.5rem;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .about-features {
        gap: 0.75rem;
    }
    
    .feature {
        flex: 1 1 100%;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial-card > p {
        font-size: 1.2rem;
    }
    
    .client img {
        width: 50px;
        height: 50px;
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    /* Booking Section */
    .booking {
        padding: 4rem 0;
    }
    
    .booking-info, .booking-form-container {
        flex: 1 1 100%;
    }
    
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .booking-form h3 {
        font-size: 1.3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        flex: 1 1 100%;
    }
    
    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-card {
        flex: 1 1 100%;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-links {
        flex: 1 1 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 1.5rem;
    }
    
    /* Lightbox Modal */
    .modal-prev, .modal-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
        padding: 8px;
    }
    
    .modal-prev {
        left: 5px;
    }
    
    .modal-next {
        right: 5px;
    }
    
    .modal-thumbnails {
        bottom: 10px;
        gap: 5px;
        padding: 8px;
    }
    
    .modal-thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .modal-caption {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .modal-counter {
        top: 10px;
        left: 10px;
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 30px;
    }
}

/* Large Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar */
    .logo img {
        height: 40px;
        max-width: 150px;
    }
    
    .navbar.scrolled .logo img {
        height: 35px;
    }
    
    .mobile-menu {
        left: 0.5rem;
        right: 0.5rem;
        padding: 1rem;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    
    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        max-width: 260px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-num {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .slider-dots {
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .services {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Process Section */
    .process {
        padding: 3rem 0;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .process-cta {
        margin-top: 2rem;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 3rem 0;
    }
    
    .portfolio-filter {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .portfolio-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    /* About Section */
    .about {
        padding: 3rem 0;
    }
    
    .about-img-small {
        width: 100px;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .team-member img {
        width: 50px;
        height: 50px;
    }
    
    .team-info h5 {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-card > p {
        font-size: 1rem;
    }
    
    .stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Booking Section */
    .booking {
        padding: 3rem 0;
    }
    
    .booking-desc {
        font-size: 0.9rem;
    }
    
    .booking-feature svg {
        width: 20px;
        height: 20px;
    }
    
    .booking-feature h5 {
        font-size: 0.9rem;
    }
    
    .booking-feature p {
        font-size: 0.8rem;
    }
    
    .booking-form-container {
        padding: 1.25rem;
    }
    
    .booking-form h3 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-desc {
        font-size: 0.8rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-newsletter p {
        font-size: 0.8rem;
    }
    
    /* Success Modal */
    .success-modal {
        padding: 2rem;
        width: 85%;
    }
    
    .success-modal h3 {
        font-size: 1.2rem;
    }
    
    .success-modal p {
        font-size: 0.85rem;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        max-width: 100%;
    }
    
    .cart-header h3 {
        font-size: 1.25rem;
    }
    
    .total-price {
        font-size: 1.25rem;
    }
}

/* Small Phones (max-width: 400px) */
@media screen and (max-width: 400px) {
    /* Container */
    .container {
        padding: 0 0.875rem;
    }
    
    /* Navbar */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 35px;
        max-width: 130px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 4.5rem 0.875rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-desc {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        max-width: 240px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .stat-num {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-desc {
        font-size: 0.85rem;
    }
    
    /* Services Section */
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    /* Process Section */
    .step-content {
        padding: 1.25rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    /* Portfolio Section */
    .portfolio-filter {
        gap: 0.4rem;
    }
    
    .filter-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-overlay h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .view-btn {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    /* About Section */
    .about-img-small {
        width: 80px;
    }
    
    .experience-badge {
        padding: 0.6rem;
    }
    
    .experience-badge .years {
        font-size: 1.2rem;
    }
    
    .experience-badge .text {
        font-size: 0.6rem;
    }
    
    .about-text {
        font-size: 0.85rem;
    }
    
    .feature {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .feature svg {
        width: 16px;
        height: 16px;
    }
    
    /* Testimonials */
    .testimonial-card > p {
        font-size: 0.9rem;
    }
    
    .client-info h5 {
        font-size: 0.9rem;
    }
    
    .client-info span {
        font-size: 0.75rem;
    }
    
    /* Booking Section */
    .booking-feature {
        gap: 0.75rem;
    }
    
    .booking-feature svg {
        width: 18px;
        height: 18px;
    }
    
    .booking-feature h5 {
        font-size: 0.85rem;
    }
    
    .booking-feature p {
        font-size: 0.75rem;
    }
    
    .booking-form-container {
        padding: 1rem;
    }
    
    .booking-form h3 {
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Contact Section */
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .contact-card h4 {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .footer-legal a {
        font-size: 0.75rem;
    }
    
    /* Lightbox Modal */
    .modal-prev, .modal-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .modal-thumbnail {
        width: 35px;
        height: 35px;
    }
    
    .close-modal {
        width: 30px;
        height: 30px;
        font-size: 25px;
    }
}

/* Extra Small Phones (max-width: 350px) */
@media screen and (max-width: 350px) {
    /* Container */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navbar */
    .logo img {
        height: 32px;
        max-width: 110px;
    }
    
    .mobile-toggle {
        gap: 4px;
    }
    
    .hamburger {
        width: 22px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 4rem 0.75rem 1.25rem;
    }
    
    .hero-title {
        font-size: 1.35rem;
    }
    
    .hero-tagline {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .hero-desc {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons {
        max-width: 220px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
        padding-top: 1rem;
    }
    
    .stat-num {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-desc {
        font-size: 0.8rem;
    }
    
    .section-tag {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    /* Services Section */
    .services {
        padding: 2rem 0;
    }
    
    .service-card {
        padding: 0.875rem;
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    /* Process Section */
    .process {
        padding: 2rem 0;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: -1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .step-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.75rem;
    }
    
    .process-cta {
        margin-top: 1.5rem;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 2rem 0;
    }
    
    .portfolio-filter {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .filter-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.55rem;
    }
    
    .portfolio-overlay h4 {
        font-size: 0.85rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.65rem;
    }
    
    .view-btn {
        padding: 0.3rem 0.75rem;
        font-size: 0.65rem;
    }
    
    /* About Section */
    .about {
        padding: 2rem 0;
    }
    
    .about-img-small {
        width: 70px;
    }
    
    .about-text {
        font-size: 0.8rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .team-member img {
        width: 40px;
        height: 40px;
    }
    
    .team-info h5 {
        font-size: 0.8rem;
    }
    
    .team-info p {
        font-size: 0.7rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonial-card > p {
        font-size: 0.85rem;
    }
    
    .stars {
        font-size: 0.9rem;
    }
    
    /* Booking Section */
    .booking {
        padding: 2rem 0;
    }
    
    .booking-feature h5 {
        font-size: 0.8rem;
    }
    
    .booking-feature p {
        font-size: 0.65rem;
    }
    
    .contact-info-box p {
        font-size: 0.7rem;
    }
    
    .booking-form-container {
        padding: 0.875rem;
    }
    
    .booking-form h3 {
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 2rem 0;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.75rem;
    }
    
    .contact-card h4 {
        font-size: 0.85rem;
    }
    
    .contact-card p {
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-desc {
        font-size: 0.75rem;
    }
    
    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-newsletter p {
        font-size: 0.75rem;
    }
    
    .newsletter-form input {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .newsletter-form button {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .footer-legal a {
        font-size: 0.7rem;
    }
    
    /* Success Modal */
    .success-modal {
        padding: 1.5rem;
    }
    
    .modal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .success-modal h3 {
        font-size: 1.1rem;
    }
    
    .success-modal p {
        font-size: 0.8rem;
    }
    
    /* Lightbox Modal */
    .modal-prev, .modal-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .modal-thumbnail {
        width: 30px;
        height: 30px;
    }
    
    .close-modal {
        width: 30px;
        height: 30px;
        font-size: 25px;
    }
}

/* Ultra Small Phones (max-width: 300px) */
@media screen and (max-width: 300px) {
    /* Container */
    .container {
        padding: 0 0.5rem;
    }
    
    /* Navbar */
    .logo img {
        height: 28px;
        max-width: 90px;
    }
    
    .mobile-menu {
        padding: 0.875rem;
    }
    
    .mobile-link {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .mobile-cart-btn {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .mobile-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 3.5rem 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        max-width: 200px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .hero-stats {
        gap: 0.4rem;
    }
    
    .stat-num {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-desc {
        font-size: 0.75rem;
    }
    
    .section-tag {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    /* Services Section */
    .services {
        padding: 2rem 0;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    /* Process Section */
    .process {
        padding: 2rem 0;
    }
    
    .step-number {
        font-size: 2rem;
        margin-bottom: -1rem;
    }
    
    .step-content {
        padding: 0.875rem;
    }
    
    .step-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .step-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
    
    .process-cta {
        margin-top: 1.5rem;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 2rem 0;
    }
    
    .portfolio-filter {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .filter-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.55rem;
    }
    
    .portfolio-overlay h4 {
        font-size: 0.75rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.65rem;
    }
    
    .view-btn {
        padding: 0.3rem 0.75rem;
        font-size: 0.65rem;
    }
    
    /* About Section */
    .about {
        padding: 2rem 0;
    }
    
    .about-img-small {
        width: 60px;
    }
    
    .about-text {
        font-size: 0.75rem;
    }
    
    .feature {
        font-size: 0.75rem;
    }
    
    .team-member img {
        width: 40px;
        height: 40px;
    }
    
    .team-info h5 {
        font-size: 0.8rem;
    }
    
    .team-info p {
        font-size: 0.7rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonial-card > p {
        font-size: 0.75rem;
    }
    
    .stars {
        font-size: 0.9rem;
    }
    
    /* Booking Section */
    .booking {
        padding: 2rem 0;
    }
    
    .booking-feature h5 {
        font-size: 0.75rem;
    }
    
    .booking-feature p {
        font-size: 0.65rem;
    }
    
    .contact-info-box p {
        font-size: 0.7rem;
    }
    
    .booking-form-container {
        padding: 0.75rem;
    }
    
    .booking-form h3 {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .submit-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 2rem 0;
    }
    
    .contact-card {
        padding: 0.875rem;
    }
    
    .contact-card h4 {
        font-size: 0.85rem;
    }
    
    .contact-card p {
        font-size: 0.7rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-logo {
        width: 80px;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
    }
    
    .footer-desc {
        font-size: 0.65rem;
    }
    
    .footer-links h4 {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.65rem;
    }
    
    .footer-newsletter p {
        font-size: 0.65rem;
    }
    
    .footer-bottom p {
        font-size: 0.6rem;
    }
    
    .footer-legal a {
        font-size: 0.6rem;
    }
    
    /* Cart Sidebar */
    .cart-header {
        padding: 1rem;
    }
    
    .cart-header h3 {
        font-size: 1rem;
    }
    
    .cart-items {
        padding: 0.75rem;
    }
    
    .cart-footer {
        padding: 0.75rem;
    }
    
    .total-price {
        font-size: 1rem;
    }
    
    .checkout-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    /* Success Modal */
    .success-modal {
        padding: 1rem;
        width: 90%;
    }
    
    .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .success-modal h3 {
        font-size: 1rem;
    }
    
    .success-modal p {
        font-size: 0.7rem;
    }
    
    .modal-close {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Fix for very small screens - ensure no horizontal scroll */
@media screen and (max-width: 758px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Touch-friendly adjustments for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link, 
    .btn-primary, 
    .btn-secondary,
    .filter-btn,
    .portfolio-item,
    .service-card,
    .social-link {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-link:active,
    .btn-primary:active,
    .btn-secondary:active {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* Landscape orientation adjustments */
@media screen and (max-width: 758px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-stats {
        padding-top: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .process-steps {
        gap: 1rem;
    }
}
