/* ===========================
   CSS Variables - Indian Bridal Theme
   =========================== */
:root {
    --primary-maroon: #8B1538;
    --secondary-gold: #D4AF37;
    --accent-pink: #F4C2C2;
    --ivory: #FFFFF0;
    --dark-maroon: #5A0A23;
    --light-gold: #F4E4C1;
    --text-dark: #2C1810;
    --text-light: #6B5D57;
    --bg-light: #FFF8F0;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-maroon);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.brand-link:hover {
    opacity: 0.9;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-maroon);
    line-height: 1;
}

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

.nav-menu li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-maroon);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.btn-whatsapp-nav {
    background: var(--primary-maroon);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
}

.btn-whatsapp-nav:hover {
    background: var(--dark-maroon);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-maroon);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-maroon);
    color: white;
    border-color: var(--primary-maroon);
}

.btn-primary:hover {
    background: var(--dark-maroon);
    border-color: var(--dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-maroon);
    border-color: var(--primary-maroon);
}

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

.btn-success {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-success:hover {
    background: #1DA851;
    border-color: #1DA851;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.7), rgba(90, 10, 35, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===========================
   Highlights Section
   =========================== */
.highlights {
    padding: 5rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
}

.highlight-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-pink), var(--light-gold));
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--secondary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 0;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    color: var(--primary-maroon);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.faq-answer {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ===========================
   CTA Section
   =========================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* ===========================
   Gallery
   =========================== */
.gallery-section {
    padding: 4rem 0;
}

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

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: white;
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Container with Thumbnail */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    overflow: hidden;
}

.gallery-video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.gallery-video.playing {
    display: block;
}

/* Video Thumbnail - First frame of video */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-thumbnail-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-thumbnail-overlay.hidden {
    display: none;
}

.video-play-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.video-play-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-thumbnail-overlay:hover .video-play-button {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Video playing state */
.gallery-item-video.playing .video-thumbnail-overlay {
    display: none;
}

.gallery-item-video.playing .gallery-video {
    display: block;
}

.gallery-item-video.playing .video-thumbnail {
    display: none !important;
}

/* Loading placeholder for images */
.gallery-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.gallery-image.loaded {
    background: none;
    animation: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.9), transparent);
    color: white;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-category {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* ===========================
   About Page
   =========================== */
.about-section {
    padding: 5rem 0;
}

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

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
    color: var(--primary-maroon);
    margin-bottom: 1.5rem;
}

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

.expertise-section,
.service-areas,
.brands-section,
.why-choose {
    padding: 5rem 0;
}

.expertise-section {
    background: var(--bg-light);
}

.expertise-grid,
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-card,
.why-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.expertise-card h3,
.why-item h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.expertise-card p,
.why-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.areas-content,
.brands-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cities-grid,
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.city-item,
.brand-item {
    background: var(--accent-pink);
    padding: 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-maroon);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.brands-section {
    background: var(--bg-light);
}

/* ===========================
   Reviews Page
   =========================== */
.rating-summary {
    padding: 4rem 0;
    background: var(--bg-light);
}

.rating-box {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.rating-score {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-maroon);
    display: block;
    margin-bottom: 0.5rem;
}

.stars-large {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.star-filled {
    color: var(--secondary-gold);
}

.star-empty {
    color: #ddd;
}

.rating-count {
    color: var(--text-light);
    margin-bottom: 0;
}

.reviews-section {
    padding: 4rem 0;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-info h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.review-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.review-stars {
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.no-reviews {
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* ===========================
   Review Form Section
   =========================== */
.review-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.review-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.review-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.rating-input {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    line-height: 1;
    display: inline-block;
}

.rating-input .star-label:hover {
    color: var(--secondary-gold);
    transform: scale(1.1);
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label {
    color: var(--secondary-gold);
}

.rating-hint {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.char-count {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

.field-error {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #d32f2f;
}

/* ===========================
   Contact Page
   =========================== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-maroon);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info-box h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-method h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-link {
    color: var(--primary-maroon);
    font-weight: 600;
}

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

.business-hours p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.business-hours .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    color: var(--primary-maroon);
    text-align: center;
    margin-bottom: 0.5rem;
}

.map-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.service-areas-text {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.quick-cta {
    padding: 4rem 0;
}

.quick-cta-box {
    background: linear-gradient(135deg, var(--accent-pink), var(--light-gold));
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.quick-cta-box h3 {
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.quick-cta-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--secondary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    /* Navigation */
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: white;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Grids */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    /* Mobile video optimizations */
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button svg {
        width: 50px;
        height: 50px;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Spacing */
    .services,
    .highlights,
    .testimonials-preview,
    .faq,
    .cta,
    .about-section,
    .expertise-section,
    .service-areas,
    .brands-section,
    .why-choose,
    .gallery-section,
    .reviews-section,
    .contact-section,
    .map-section,
    .quick-cta {
        padding: 3rem 0;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

