:root {
    --primary: #7D2941;
    --primary-dark: #5C1D31;
    --primary-light: #9A3A52;
    --secondary: #C9A77D;
    --text: #1A1A1A;
    --text-light: #5C5C5C;
    --text-muted: #8A8A8A;
    --bg: #FDFCFB;
    --bg-alt: #F7F5F3;
    --white: #FFFFFF;
    --border: #E8E4E0;
    --shadow: rgba(125, 41, 65, 0.08);
    --shadow-md: rgba(125, 41, 65, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Container */
.section-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

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

.header-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.header-since {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-nav {
    display: none;
}

.header-insta {
    display: none;
}

.header-whatsapp {
    display: none;
}

.header-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-call {
    margin-top: 20px;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

.mobile-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.mobile-social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.mobile-whatsapp {
    background: #25D366;
    color: var(--white);
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero-logo-wrap {
    margin-bottom: 24px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--white);
    padding: 8px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-tagline {
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.hero-location {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-call {
    background: var(--white);
    color: var(--primary);
    width: 100%;
    max-width: 280px;
}

.btn-contact {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    width: 100%;
    max-width: 280px;
}

.btn-call:hover, .btn-contact:hover {
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 8px;
    text-align: center;
}

.section-label-light {
    color: rgba(255,255,255,0.7);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 24px;
    text-align: center;
}

.section-title-light {
    color: var(--white);
}

/* Bridal Collection */
.bridal {
    background: var(--white);
}

.bridal-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: -16px;
    margin-bottom: 24px;
}

.bridal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.bridal-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-alt);
}

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

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

.btn-bridal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-bridal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-md);
}

/* Categories */
.categories {
    background: var(--bg-alt);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.category-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px var(--shadow);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 16px;
}

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

.category-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 16px;
}

.category-icon-gradient {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 16px;
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Reels */
.reels {
    background: var(--white);
}

.reels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

.reel-item {
    position: relative;
    padding-bottom: 120%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-alt);
}

.reel-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Reviews */
.reviews {
    background: var(--bg-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.review-video {
    position: relative;
    padding-bottom: 120%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg);
}

.review-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-text {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.review-text p {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
}

.review-author {
    margin-top: 16px;
    padding-left: 24px;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

/* About */
.about {
    background: var(--white);
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: center;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Services */
.services {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

.service-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery */
.gallery {
    background: var(--bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    background: var(--border);
}

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

.gallery-cta {
    text-align: center;
    margin-top: 24px;
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: transform 0.2s;
}

.btn-insta:hover {
    transform: scale(1.02);
}

/* Gifts */
.gifts {
    background: var(--white);
}

.gifts-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: -12px;
    margin-bottom: 24px;
}

.gifts-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--border);
}

.gifts-scroll::-webkit-scrollbar {
    height: 6px;
}

.gifts-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}

.gifts-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.gift-item {
    flex: 0 0 200px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.2s;
}

.gift-item:hover {
    transform: scale(1.02);
}

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

.gifts-cta {
    text-align: center;
    margin-top: 16px;
}

.btn-gifts {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.btn-gifts:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Why Us */
.why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    padding: 20px;
    border-left: 3px solid var(--primary);
    background: var(--bg-alt);
}

.feature-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.feature-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact */
.contact {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.map-container {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s;
}

.map-link:hover {
    background: var(--primary-dark);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--white);
    text-decoration: none;
    line-height: 1.5;
}

a.contact-value:hover {
    text-decoration: underline;
}

.second-phone {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* New Branch */
.new-branch {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.new-branch .section-label {
    color: var(--secondary);
}

.new-branch .section-title {
    color: var(--white);
}

.branch-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.branch-images {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.branch-item {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.branch-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .branch-images {
        gap: 24px;
    }
    
    .branch-item {
        max-width: 350px;
    }
}

/* WhatsApp Section */
.whatsapp-section {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 48px 0;
}

.whatsapp-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-icon {
    color: var(--white);
    margin-bottom: 16px;
}

.whatsapp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.whatsapp-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: #25D366;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--white);
    padding: 4px;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
}

.footer-since {
    font-size: 0.8rem;
    color: var(--secondary);
}

.footer-info {
    margin-top: 8px;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}

.footer-phone {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--secondary);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1000px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .header-container {
        padding: 16px 24px;
    }
    
    .header-logo {
        width: 50px;
        height: 50px;
    }
    
    .header-name {
        font-size: 1.25rem;
    }
    
    .header-since {
        font-size: 0.75rem;
    }
    
    .header-nav {
        display: flex;
        gap: 32px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.2s;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .header-insta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        border-radius: 8px;
        color: var(--white);
        text-decoration: none;
        transition: transform 0.2s;
    }
    
    .header-insta:hover {
        transform: scale(1.05);
    }
    
    .header-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #25D366;
        border-radius: 8px;
        color: var(--white);
        text-decoration: none;
        transition: transform 0.2s;
    }
    
    .header-whatsapp:hover {
        transform: scale(1.05);
    }
    
    .header-social {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding: 80px 24px 100px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-location {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-call, .btn-contact {
        width: auto;
        min-width: 160px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-container {
        padding: 0 32px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .bridal-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 32px;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-brand {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 16px 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-content {
        max-width: 500px;
    }
}
