﻿/* Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body { font-family: 'Montserrat', sans-serif; color: #fff; line-height: 1.6; scroll-behavior: smooth; background: #0f1419; }
a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }

/* Hero H1 */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e6edf5;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 0 18px rgba(74, 123, 167, 0.35);
}

/* NORMAL HEADER */
header#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0b1118;
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(74, 123, 167, 0.2);
}

body {
    padding-top: 120px;
}
header#mainHeader .logo { 
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 15px;
    border-right: 2px solid rgba(192, 192, 192, 0.3);
    transition: all 0.3s ease;
}
header#mainHeader .logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(74, 123, 167, 0.6));
}
header#mainHeader .logo img { 
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 180px;
    transition: transform 0.3s ease;
}
header#mainHeader .logo:hover img {
    transform: scale(1.05);
}
.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 0 15px;
    height: 40px;
    gap: 10px;
    flex: 1;
    max-width: 350px;
    margin: 0 30px;
    position: relative;
}
.search-input {
    border: none;
    background: transparent;
    outline: none;
    color: #333;
    width: 100%;
    font-size: 14px;
}
.search-input::placeholder {
    color: #999;
}
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    padding: 0;
}
.search-btn:hover {
    transform: scale(1.1);
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}
.search-suggestions.active {
    display: block;
}
.suggestion-item {
    padding: 12px 15px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-label {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
    font-weight: 500;
}
.suggestion-item:hover {
    background: #f0f0f0;
    padding-left: 20px;
}
.suggestion-item.highlighted {
    background: #4a7ba7;
    color: #fff;
    padding-left: 20px;
}
.suggestion-item.highlighted .section-label {
    color: #e0e0e0;
}
.suggestion-item:last-child {
    border-bottom: none;
}
.header-right { display: flex; align-items: center; gap: 30px; }
.phone-number { font-weight: 400; color: #b8c5d6; font-size: 14px; }
.get-quote-btn { 
    padding: 12px 25px; 
    background: #1a3a5c; 
    color: #c0c0c0; 
    border-radius: 4px; 
    font-weight: 600; 
    transition: 0.3s;
    font-size: 14px;
    border: 2px solid #4a7ba7;
}
.get-quote-btn:hover { 
    background: #4a7ba7; 
    color: #fff;
    box-shadow: 0 0 15px rgba(74, 123, 167, 0.4);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    z-index: 10000;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger-menu:active {
    opacity: 0.8;
}

.hamburger-menu:focus {
    outline: none;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #b8c5d6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
nav#navMenu {
    display: flex;
    gap: 40px;
}

nav#navMenu ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav#navMenu li {
    list-style: none;
}

nav#navMenu a {
    font-weight: 500;
    color: #b8c5d6;
    transition: 0.3s;
    font-size: 14px;
}

nav#navMenu a:hover {
    color: #4a7ba7;
}

/* DESKTOP - Hide hamburger, show navigation */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }

    nav#navMenu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
    }

    nav#navMenu a {
        padding: 0 !important;
        border: none !important;
    }

    nav#navMenu.mobile-active {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        animation: none !important;
    }

    nav#navMenu.mobile-hidden {
        display: flex !important;
    }
}

/* Mobile Navigation Menu */
nav#navMenu.mobile-active {
    display: flex;
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: #0b1118;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid rgba(74, 123, 167, 0.2);
    z-index: 9998;
    animation: slideDown 0.3s ease;
}

nav#navMenu.mobile-hidden {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav#navMenu.mobile-active a {
    padding: 15px 30px;
    color: #b8c5d6;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(74, 123, 167, 0.1);
}

nav#navMenu.mobile-active a:hover {
    background: rgba(74, 123, 167, 0.1);
    color: #4a7ba7;
    padding-left: 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15,20,25,0.5) 0%, rgba(26,58,92,0.6) 100%), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    flex-direction: column;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.5);
}
.hero-content { 
    position: relative; 
    z-index: 1; 
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}
.hero-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    color: #4a7ba7;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-content h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 72px; 
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}
.hero-content h2 .accent {
    color: #4a7ba7;
}
.hero-description {
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}
.hero-buttons { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.btn-primary { 
    padding: 15px 40px; 
    border-radius: 4px; 
    font-weight: 600; 
    background: #1a3a5c; 
    color: #c0c0c0; 
    transition: 0.3s;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #4a7ba7;
}
.btn-primary:hover { 
    background: #4a7ba7; 
    color: #fff;
    box-shadow: 0 0 20px rgba(74, 123, 167, 0.5);
}
.btn-secondary { 
    padding: 15px 40px; 
    border-radius: 4px; 
    font-weight: 600; 
    background: transparent;
    color: #c0c0c0;
    border: 2px solid #666;
    transition: 0.3s;
    font-size: 16px;
    letter-spacing: 1px;
}
.btn-secondary:hover { 
    border-color: #4a7ba7; 
    color: #4a7ba7;
    box-shadow: 0 0 15px rgba(74, 123, 167, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: bounce 2s infinite;
}
.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #4a7ba7;
}
.scroll-indicator svg {
    color: #4a7ba7;
    animation: arrow-down 1s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes arrow-down {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(5px); opacity: 1; }
}

/* Collections */
.collections { padding: 80px 50px; text-align: center; background: #0f1419; }
.collections h2 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 50px; color: #fff; letter-spacing: 1px; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.collection-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1 / 1; }
.collection-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; border: 2px solid rgba(74, 123, 167, 0.3); }
.collection-item:hover img { transform: scale(1.08); border-color: #4a7ba7; }
.collection-name { 
    position: absolute; 
    bottom: 50px; 
    left: 0; 
    right: 0; 
    padding: 25px; 
    background: linear-gradient(to top, rgba(15, 20, 25, 0.95), rgba(26, 58, 92, 0.8), transparent); 
    font-family: 'Playfair Display', serif; 
    font-size: 28px; 
    color: #fff; 
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(74, 123, 167, 0.5);
    transition: all 0.3s ease;
}
.collection-item:hover .collection-name {
    background: linear-gradient(to top, rgba(74, 123, 167, 1), rgba(74, 123, 167, 0.8), transparent);
}
.collection-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 35px;
    background: linear-gradient(135deg, #4a7ba7 0%, #1a3a5c 100%);
    color: #e0e0e0;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    border: 2px solid #4a7ba7;
    box-shadow: 0 4px 15px rgba(74, 123, 167, 0.4);
    letter-spacing: 0.5px;
}
.collection-item:hover .collection-btn {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(135deg, #5a8bb7 0%, #2a4a6c 100%);
    box-shadow: 0 6px 20px rgba(74, 123, 167, 0.6);
    transform: translateX(-50%) translateY(-3px);
}
.collection-btn:hover {
    background: linear-gradient(135deg, #6a9bc7 0%, #3a5a7c 100%);
    box-shadow: 0 8px 25px rgba(74, 123, 167, 0.8);
}

/* Stats */
.stats { display: flex; justify-content: space-around; padding: 80px 50px; background: #1a2938; flex-wrap: wrap; text-align: center; border-top: 2px solid rgba(74, 123, 167, 0.2); border-bottom: 2px solid rgba(74, 123, 167, 0.2); }
.stat-item h3 { font-size: 48px; color: #4a7ba7; font-weight: 700; }
.stat-item p { margin-top: 10px; font-weight: 400; color: #b8c5d6; font-size: 16px; }

/* About Section */
.about {
    padding: 100px 50px;
    background: #0f1419;
}
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.about-image {
    flex: 0 0 auto;
    min-width: 250px;
    max-width: 380px;
    height: auto;
}
.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid rgba(74, 123, 167, 0.3);
    border-radius: 4px;
    display: block;
}
.about-content {
    flex: 1;
    min-width: 300px;
}
.about-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #4a7ba7;
    margin-bottom: 15px;
    font-weight: 600;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.2;
}
.about-content h2 .accent {
    color: #4a7ba7;
}
.about-description {
    font-size: 16px;
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Services */
.services { padding: 80px 50px; text-align: center; background: #0f1419; }
.services h2 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 60px; color: #fff; letter-spacing: 1px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 40px; }
.service-item { padding: 30px 20px; transition: transform 0.3s; cursor: pointer; border-left: 3px solid transparent; }
.service-item:hover { transform: translateY(-10px); border-left-color: #4a7ba7; }
.service-item img { margin-bottom: 20px; filter: brightness(0.9) hue-rotate(200deg) saturate(1.2); }
.service-item h4 { font-size: 18px; font-weight: 600; color: #c0c0c0; }

/* Gallery */
.gallery { padding: 100px 50px; text-align: center; background: #1a2938; }
.gallery h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 48px; 
    margin-bottom: 15px; 
    color: #fff; 
    letter-spacing: 1px;
}
.gallery-subtitle { 
    font-size: 16px; 
    color: #4a7ba7; 
    margin-bottom: 50px; 
    font-weight: 600; 
    letter-spacing: 2px;
}
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.gallery-grid img { 
    width: 100%; 
    height: auto; 
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    cursor: pointer; 
    border-radius: 6px; 
    border: 3px solid rgba(74, 123, 167, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-50px);
}
.gallery-grid img:nth-child(2n) {
    transform: translateX(50px);
}
.gallery-grid img.show {
    opacity: 1;
    transform: translateX(0);
}
.gallery-grid img:hover { 
    transform: scale(1.08) translateX(0); 
    border-color: #4a7ba7; 
    box-shadow: 0 15px 40px rgba(74, 123, 167, 0.6);
    filter: brightness(1.1);
}

/* Contact */
.contact { padding: 80px 50px; text-align: center; background: #0f1419; }
.contact h2 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 50px; color: #fff; letter-spacing: 1px; }
.contact-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 80px; max-width: 1200px; margin: 0 auto; }
.contact-info { flex: 1; min-width: 300px; text-align: left; display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; }
.contact-icon { 
    font-size: 28px; 
    min-width: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-shrink: 0;
}
.contact-text { display: flex; flex-direction: column; gap: 8px; }
.contact-text p { 
    margin: 0; 
    font-size: 16px; 
    color: #b8c5d6; 
    line-height: 1.5;
    width: 100%;
}
.contact-text p a { 
    color: #4a7ba7; 
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    display: inline-block;
    pointer-events: auto;
}
.contact-text p a:hover {
    color: #fff;
    border-bottom-color: #4a7ba7;
    text-decoration: none;
}
.contact-form { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { 
    padding: 15px; 
    border: 1px solid rgba(74, 123, 167, 0.3); 
    border-radius: 4px; 
    background: rgba(26, 58, 92, 0.2);
    color: #c0c0c0;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { 
    outline: none;
    border-color: #4a7ba7;
    background: rgba(74, 123, 167, 0.15);
    box-shadow: 0 0 10px rgba(74, 123, 167, 0.2);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #778899; }
.contact-form button { 
    padding: 15px; 
    border: none; 
    border-radius: 4px; 
    background: #1a3a5c; 
    color: #c0c0c0; 
    font-weight: 600; 
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    border: 2px solid #4a7ba7;
}
.contact-form button:hover { 
    background: #4a7ba7; 
    color: #fff;
    box-shadow: 0 0 15px rgba(74, 123, 167, 0.4);
}

/* Footer */
footer { background: #0a0f14; color: #fff; padding: 50px; text-align: center; border-top: 2px solid rgba(74, 123, 167, 0.2); }
.footer-links, .footer-social { margin-bottom: 20px; }
.footer-links a, .footer-social a { margin: 0 20px; color: #b8c5d6; transition: 0.3s; font-size: 14px; }
.footer-links a:hover, .footer-social a:hover { color: #4a7ba7; }
footer p { color: #778899; font-size: 14px; }

/* Responsive Design */
/* Tablet (768px and below) */
@media (max-width: 768px) {
    header#mainHeader {
        position: fixed;
        padding: 12px 12px;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        max-width: 100vw;
    }

    .hamburger-menu {
        display: flex;
    }

    nav#navMenu {
        display: none;
    }

    nav#navMenu.mobile-hidden {
        display: none;
    }

    header#mainHeader .logo {
        height: 50px;
        max-width: 120px;
        padding: 0 8px;
        border-right: 1px solid rgba(192, 192, 192, 0.2);
        flex: 0 0 auto;
    }

    header#mainHeader .logo img {
        max-width: 90px;
    }

    .search-box {
        flex: 1;
        max-width: none;
        margin: 0 8px;
        height: 36px;
        min-width: 120px;
    }

    .header-right {
        display: flex;
        gap: 8px;
        align-items: center;
        flex: 0 0 auto;
    }
    
    .phone-number {
        display: none;
    }
    
    .get-quote-btn {
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 30px;
    }
    
    .hero-title {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Stats Section */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 60px 30px;
    }
    
    .stat {
        padding: 30px;
    }
    
    .stat h3 {
        font-size: 24px;
    }
    
    /* Collections Grid */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 50px 30px;
    }
    
    .collection-card h3 {
        font-size: 20px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 30px;
    }
    
    .contact-section h2 {
        font-size: 32px;
    }
    
    .contact-container {
        gap: 40px;
        flex-direction: column;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-form {
        flex: 1;
    }

    .about-content,
    .contact-info,
    .contact-form {
        min-width: 0;
        width: 100%;
    }
    
    footer {
        padding: 30px;
    }
    
    .footer-links a, .footer-social a {
        margin: 0 10px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    header#mainHeader {
        position: fixed;
        padding: 10px 10px;
        gap: 6px;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100vw;
    }

    .hamburger-menu {
        display: flex;
        flex: 0 0 auto;
    }

    nav#navMenu {
        display: none;
    }
    
    header#mainHeader .logo {
        height: 40px;
        padding: 0 6px;
        border-right: 1px solid rgba(192, 192, 192, 0.2);
        flex: 0 0 auto;
    }
    
    header#mainHeader .logo img {
        max-width: 70px;
    }

    header#mainHeader.scrolled {
        padding: 8px 10px;
        transform: none;
    }
    
    nav#navMenu.mobile-active {
        top: 60px;
    }

    .search-box {
        flex: 1;
        height: 32px;
        margin: 0 6px;
        min-width: 0;
        max-width: none;
    }
    
    .search-input {
        font-size: 12px;
        padding: 6px;
    }
    
    .search-btn {
        font-size: 12px;
    }
    
    .header-right {
        display: flex;
        gap: 6px;
        flex: 0 0 auto;
        align-items: center;
    }
    
    .phone-number {
        font-size: 12px;
    }
    
    .get-quote-btn {
        padding: 8px 10px;
        font-size: 12px;
        min-width: 0;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 15px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 22px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .hero h2 {
        font-size: 22px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        gap: 10px;
        flex-direction: column;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Collections */
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 15px;
    }
    
    .collection-item img {
        height: 200px;
        object-fit: cover;
    }
    
    /* Stats Section */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 40px 15px;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .stat h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    /* About Section */
    .about-container {
        gap: 20px;
        width: 100%;
    }
    
    .about-image {
        height: 250px;
        margin-bottom: 10px;
    }
    
    .about-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    /* Contact Section */
    .contact-container {
        gap: 20px;
        flex-direction: column;
        width: 100%;
    }
    
    .contact-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 12px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .contact-form button {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    
    footer {
        padding: 20px 15px;
    }
    
    .footer-links a {
        margin: 5px 8px;
        font-size: 12px;
    }
}

/* Extra Small Devices (max-width: 320px) */
@media (max-width: 320px) {
    header {
        padding: 10px 15px;
    }
    
    header .logo {
        height: 40px;
    }
    
    header .logo img {
        max-width: 100px;
    }
    
    nav a {
        font-size: 11px;
        padding: 8px 5px;
    }
    
    .hero-title {
        font-size: 20px;
    }

    .hero h2 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 12px;
    }
}

/* ===== ABOUT SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about {
        padding: 80px 40px;
    }
    
    .about-container {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 30px;
    }
    
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .about-image {
        max-width: 100%;
        flex: 1;
        width: 100%;
    }
    
    .about-content {
        width: 100%;
        flex: 1;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 20px;
    }
    
    .about-container {
        gap: 25px;
    }
    
    .about-image {
        min-width: 100%;
        max-width: 100%;
    }
    
    .about-subtitle {
        font-size: 12px;
    }
    
    .about-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ===== COLLECTIONS SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .collections {
        padding: 70px 40px;
    }
    
    .collections h2 {
        font-size: 40px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .collections {
        padding: 60px 30px;
    }
    
    .collections h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .collection-name {
        font-size: 22px;
    }
    
    .collection-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .collections {
        padding: 40px 20px;
    }
    
    .collections h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .collection-name {
        font-size: 18px;
        padding: 15px;
        bottom: 30px;
    }
    
    .collection-btn {
        padding: 8px 20px;
        font-size: 12px;
        bottom: 10px;
    }
}

/* ===== SERVICES SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services {
        padding: 70px 40px;
    }
    
    .services h2 {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 30px;
    }
    
    .services h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
    }
    
    .service-item {
        padding: 20px 15px;
    }
    
    .service-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 20px;
    }
    
    .services h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 15px 10px;
    }
    
    .service-item img {
        width: 60px;
        height: auto;
        margin: 0 auto 15px;
    }
    
    .service-item h4 {
        font-size: 14px;
    }
}

/* ===== GALLERY SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gallery {
        padding: 80px 40px;
    }
    
    .gallery h2 {
        font-size: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 30px;
    }
    
    .gallery h2 {
        font-size: 32px;
    }
    
    .gallery-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid img {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 40px 20px;
    }
    
    .gallery h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .gallery-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-grid img {
        aspect-ratio: 16/9;
        border: 2px solid rgba(74, 123, 167, 0.3);
    }
}

/* ===== STATS SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .stats {
        padding: 60px 30px;
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #1a2332;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px;
    text-align: right;
    border-bottom: 1px solid rgba(74, 123, 167, 0.2);
}

.close {
    color: #4a7ba7;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #6ba0d4;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a7ba7, #6ba0d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.modal-body h2 {
    color: #4a7ba7;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.modal-body p {
    color: #b0b0b0;
    margin: 12px 0;
    line-height: 1.6;
    font-size: 15px;
}

.modal-body p strong {
    color: #4a7ba7;
}

.contact-info {
    background: rgba(74, 123, 167, 0.1);
    padding: 15px;
    border-left: 3px solid #4a7ba7;
    margin: 20px 0 !important;
    border-radius: 4px;
}

.modal-btn {
    background: linear-gradient(135deg, #4a7ba7, #6ba0d4);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 123, 167, 0.4);
}

.modal-btn:active {
    transform: translateY(0);
}






