/*
 * Pushpa Almirah House - Upgraded Client Stylesheet
 * Advanced Glassmorphism, Brushed Metallic Gradients, 3D elevation shifts, and Double-Pulsing Widgets
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Theme Tokens */
    --primary: #0f172a;          /* Deep Obsidian Slate */
    --primary-light: #1e293b;    /* Polished Slate */
    --primary-muted: #475569;    /* Muted Steel */
    
    /* Brushed Metallic Gold/Brass Accents */
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    --secondary: #d97706;        /* Brass Gold */
    --secondary-light: #f59e0b;  /* Warm Gold */
    --secondary-hover: #b45309;
    
    /* Active WhatsApp Green */
    --whatsapp-green: #25d366;
    --whatsapp-hover: #128c7e;
    
    /* Backgrounds */
    --bg-light: #f8fafc;         /* Cool off-white */
    --bg-card: #ffffff;
    --border-color: #cbd5e1;     /* Soft slate border */
    --border-glowing: rgba(217, 119, 6, 0.25);
    
    /* High-End Typography */
    --text-main: #0f172a;        /* Obsidian text */
    --text-muted: #64748b;       /* Slate grey */
    
    /* Shadows & Depths */
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 8px -1px rgba(15, 23, 42, 0.02);
    --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 20px 40px -15px rgba(217, 119, 6, 0.12), 0 1px 10px -2px rgba(15, 23, 42, 0.05);
    --shadow-modal: 0 30px 60px -15px rgba(15, 23, 42, 0.25);
    
    /* Geometry */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.15s ease-out;
}

/* Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: capitalize;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Header & Glassmorphic Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.logo-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.15rem;
}

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

.nav-link {
    font-weight: 600;
    color: var(--primary-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--accent-gradient);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(180, 83, 9, 0.35);
    color: #fff;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.85rem;
    cursor: pointer;
}

/* Hero Carousel Slider */
.hero-slider {
    position: relative;
    height: 620px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.65) 100%);
    z-index: 3;
}

.slide-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary);
    padding: 0 2rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s, opacity 0.8s ease 0.15s;
}

.slide-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--primary-light);
    font-weight: 500;
    line-height: 1.5;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.slide-btn {
    align-self: center;
    background: var(--accent-gradient);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.45s, opacity 0.8s ease 0.45s, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
}

.slide-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Arrow Toggles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--primary);
    border: 1px solid var(--border-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: var(--shadow-soft);
}

.slider-arrow:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
    color: #fff;
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Category modern Pills */
.categories-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--primary-muted);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Catalog Card list Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
}

/* 3D Elevated Card */
.product-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-glowing);
}

.product-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

/* Glowing Badges */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 0.35rem 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.25);
    z-index: 5;
}

.product-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    letter-spacing: 1px;
}

.product-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.55;
    flex-grow: 1;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 1.5rem;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.product-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.product-view-btn {
    background-color: var(--primary-light);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.product-view-btn:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(180, 83, 9, 0.25);
}

/* About & factory Trust Section */
.about-section {
    background-color: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-section h2 {
    color: #fff;
}

.about-section h2::after {
    background: var(--accent-gradient);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    color: var(--secondary-light);
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.about-content p {
    color: rgba(241, 245, 249, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-regions {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2.5rem;
    backdrop-filter: blur(4px);
}

.about-regions h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.region-tag {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 6px solid rgba(255, 255, 255, 0.03);
}

/* Glassmorphic Testimonials Section */
.reviews-section {
    background-color: #f1f5f9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: var(--secondary-light);
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.review-text {
    color: var(--primary-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.05rem;
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
}

/* Glassmorphic Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 950px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-modal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.modal-content-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    padding: 4rem;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-main-img {
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-main-img img {
    max-height: 100%;
    object-fit: contain;
}

.modal-thumbs {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.modal-thumb {
    width: 85px;
    height: 85px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #f8fafc;
    transition: var(--transition);
    flex-shrink: 0;
}

.modal-thumb.active {
    border-color: var(--secondary);
}

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

.modal-info-panel {
    display: flex;
    flex-direction: column;
}

.modal-category {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.65rem;
}

.modal-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.modal-price {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.modal-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.modal-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.modal-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
    font-size: 0.92rem;
}

.modal-specs-table tr {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.modal-specs-table tr:last-child {
    border-bottom: none;
}

.modal-specs-table td {
    padding: 0.65rem 0;
}

.modal-specs-table td:first-child {
    font-weight: 700;
    color: var(--primary-light);
    width: 45%;
}

.modal-specs-table td:last-child {
    color: var(--text-main);
}

.modal-whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: #fff;
    padding: 1.1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-transform: uppercase;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.modal-whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

/* Map & Contact elements */
.contact-section {
    background-color: var(--bg-card);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--secondary);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.1);
}

.contact-details h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

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

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Double-Pulsing Sticky WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: var(--whatsapp-green);
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    font-size: 2.25rem;
    transition: var(--transition);
    animation: doublePulseWhatsapp 2.2s infinite;
}

@keyframes doublePulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 0 0 28px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Footer Section */
.main-footer {
    background-color: var(--primary);
    color: rgba(241, 245, 249, 0.7);
    padding: 6rem 0 3rem;
    border-top: 5px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1.75rem;
    font-size: 1.65rem;
    font-weight: 800;
}

.footer-brand h3 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.75rem;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--secondary-light);
    margin-top: 0.25rem;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .hero-slider {
        height: 520px;
    }
    .slide-title {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2.5rem;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: var(--shadow-card);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-slider {
        height: 480px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .modal-content-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    
    .modal-main-img {
        height: 320px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    .slide-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .floating-whatsapp {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 1.85rem;
    }
}
