/* ========================================
   Ishan Events - Main Stylesheet
   Modern, Premium Event Management Website
   ======================================== */

/* ========================================
   ISHAN EVENTS - Sage Green Premium Theme
   Modern, Elegant, Calm & Professional
   ======================================== */
:root {
    /* 🌿 Primary Sage Green Palette */
    --sage-green: #9DAE9A;
    --sage-dark: #7A8F77;
    --sage-darker: #5D7259;
    --primary: #9DAE9A;
    --primary-dark: #7A8F77;

    /* 🍃 Secondary & Accent Colors */
    --pastel-green: #C6D9C2;
    --mint-green: #E3F1DA;
    --mint-light: #EFF7E9;
    --secondary: #C6D9C2;

    /* 🎨 Background & Neutral Colors */
    --cream-bg: #F7F7F5;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --light: #F7F7F5;
    --light-sand: #EFF7E9;
    --ivory-white: #F7F7F5;

    /* ✍️ Text Colors */
    --text-dark: #2C3E2A;
    --text-medium: #4A5D47;
    --text-light: #6B7F68;
    --text-muted: #8B9B88;
    --dark: #2C3E2A;
    --gray: #6B7F68;
    --charcoal-black: #2C3E2A;
    --warm-gray: #6B7F68;

    /* ✨ Accent Colors (Legacy Support) */
    --champagne-gold: #9DAE9A;
    --gold-light: #C6D9C2;
    --deep-maroon: #7A8F77;
    --royal-maroon: #9DAE9A;
    --midnight-navy: #5D7259;
    --soft-blush: #E3F1DA;

    /* Status Colors */
    --success: #7A8F77;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #9DAE9A;
    --border: #C6D9C2;

    /* 🎭 Gradients */
    --gradient-sage: linear-gradient(135deg, #9DAE9A 0%, #7A8F77 100%);
    --gradient-pastel: linear-gradient(135deg, #E3F1DA 0%, #C6D9C2 100%);
    --gradient-hero: linear-gradient(135deg, rgba(157, 174, 154, 0.95) 0%, rgba(122, 143, 119, 0.95) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(44, 62, 42, 0.7) 0%, rgba(74, 93, 71, 0.7) 100%);
    --gradient-primary: linear-gradient(135deg, #9DAE9A 0%, #7A8F77 100%);
    --gradient-secondary: linear-gradient(135deg, #C6D9C2 0%, #E3F1DA 100%);
    --gradient-gold: linear-gradient(135deg, #9DAE9A 0%, #C6D9C2 100%);
    --gradient-maroon: linear-gradient(135deg, #7A8F77 0%, #5D7259 100%);

    /* 🖋 Font Pairing (Perfect Match) */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-accent: 'Inter', sans-serif;

    /* ✨ Effects & Shadows */
    --shadow-sm: 0 2px 8px rgba(157, 174, 154, 0.1);
    --shadow-md: 0 4px 16px rgba(157, 174, 154, 0.15);
    --shadow-lg: 0 8px 30px rgba(157, 174, 154, 0.2);
    --shadow-xl: 0 12px 40px rgba(157, 174, 154, 0.25);
    --shadow-gold: 0 4px 15px rgba(157, 174, 154, 0.3);
    --shadow-gold-hover: 0 6px 20px rgba(157, 174, 154, 0.4);
    --glow-sage: 0 0 20px rgba(157, 174, 154, 0.3);

    /* 📐 Design System */
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 30px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--ivory-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    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;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: var(--royal-maroon);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    text-decoration: none;
    color: white;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--mint-light);
    font-weight: 600;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-item i {
    color: var(--primary);
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.dropdown-item:hover {
    background: var(--mint-light);
    color: var(--primary-dark);
    padding-left: 2rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 1rem;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* Enhanced Gradient Overlay for Featured Hero */
.hero-overlay-gradient {
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

/* Featured Hero Content Styling */
.hero-content-featured {
    max-width: 900px;
}

.hero-brand-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(214, 178, 94, 0.3);
    border-radius: 30px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease;
}

.hero-brand-name {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #000000;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.4s ease;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.6s ease;
}

.hero-divider {
    width: 120px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(214, 178, 94, 0.5);
    animation: fadeInUp 1.8s ease;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 2s ease;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-call:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.btn-quote {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    border: 2px solid transparent;
}

.btn-quote:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(214, 178, 94, 0.6);
}

.btn-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.hero-subtext {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 2.2s ease;
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quote-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(107, 29, 44, 0.1);
}

.quote-modal-close:hover {
    color: var(--primary);
    background: rgba(107, 29, 44, 0.2);
    transform: rotate(90deg);
}

.quote-modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.quote-modal-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 3px rgba(214, 178, 94, 0.1);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* Old Hero Styles (for other pages) */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero Section */
.page-hero {
    position: relative;
    padding: 5rem 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2d2d;
    /* Fallback color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.page-hero nav a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.page-hero nav a:hover {
    color: white;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section.bg-light {
    background: var(--light-sand);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    color: var(--champagne-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(214, 178, 94, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.card-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
    background: linear-gradient(135deg, #F3D98B 0%, #D6B25E 100%);
}

.btn-secondary {
    background: var(--gray);
    color: white;
}

.btn-secondary:hover {
    background: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--champagne-gold);
    border: 2px solid var(--champagne-gold);
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    border-color: transparent;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px 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 6px 20px rgba(37, 211, 102, 0.6);
}

/* Gallery Float Button */
.gallery-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--charcoal-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-gold);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.gallery-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-hover);
    background: linear-gradient(135deg, #F3D98B 0%, #D6B25E 100%);
}

.gallery-float i {
    color: var(--charcoal-black);
}


/* Footer */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    color: #FFFFFF;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Premium Popular Services Section
   Minimal Luxury Design with Cream & Gold
   ======================================== */

/* Popular Services Section Container */
.popular-services-section {
    background: #FAF8F5;
    padding: 5rem 0;
}

/* Popular Services Header */
.popular-services-section .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A961;
    margin-bottom: 12px;
    display: block;
}

.popular-services-section .section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.popular-services-section .section-description {
    font-size: 16px;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 400;
}

/* Service Cards Grid - 2 Columns */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Individual Premium Service Card */
.service-card-premium {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Premium Card Image */
.service-card-image-premium {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.service-card-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-card-image-premium img {
    transform: scale(1.08);
}

/* Category Badge on Image */
.category-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(201, 169, 97, 0.95);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Premium Card Content */
.service-card-content-premium {
    padding: 32px;
}

.service-card-title-premium {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-card-description-premium {
    font-size: 15px;
    color: #6B6B6B;
    line-height: 1.7;
    margin-bottom: 28px;
    min-height: 50px;
}

/* Learn More Button - Premium Style */
.learn-more-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #C9A961;
    border: 2px solid #C9A961;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.learn-more-btn-premium:hover {
    background: #C9A961;
    color: #FFFFFF;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.learn-more-btn-premium svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.learn-more-btn-premium:hover svg {
    transform: translateX(4px);
}

/* View All Services Button - Premium Gold Gradient */
.view-all-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #C9A961 0%, #B89650 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}

.view-all-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.45);
    background: linear-gradient(135deg, #D4B56D 0%, #C9A961 100%);
}

/* Responsive - Stack on Mobile */
@media (max-width: 768px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .popular-services-section .section-title {
        font-size: 36px;
    }

    .service-card-image-premium {
        height: 240px;
    }

    .service-card-content-premium {
        padding: 24px;
    }

    .service-card-title-premium {
        font-size: 24px;
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PREMIUM FORM STYLES
   Modern, Clean, Interactive Forms
   ======================================== */

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
    opacity: 1;
}

.form-control:hover {
    border-color: var(--sage-green);
    box-shadow: 0 2px 8px rgba(157, 174, 154, 0.1);
}

.form-control:focus {
    border-color: var(--sage-green);
    background: #FAFAFA;
    box-shadow: 0 0 0 4px rgba(157, 174, 154, 0.1), 0 2px 12px rgba(157, 174, 154, 0.15);
    transform: translateY(-1px);
}

.form-control:focus+.form-label,
.form-control:not(:placeholder-shown)+.form-label {
    color: var(--sage-green);
    font-weight: 700;
}

/* Select Dropdown Styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%239DAE9A' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
    cursor: pointer;
}

select.form-control:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%237A8F77' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

/* Textarea Styling */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
    font-family: var(--font-primary);
}

/* Input Date Styling */
input[type="date"].form-control,
input[type="time"].form-control {
    cursor: pointer;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator,
input[type="time"].form-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: opacity(0.6);
    transition: var(--transition-fast);
}

input[type="date"].form-control:hover::-webkit-calendar-picker-indicator,
input[type="time"].form-control:hover::-webkit-calendar-picker-indicator {
    filter: opacity(1);
}

/* Input with Icons */
.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-left: 3rem;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sage-green);
    font-size: 1.25rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-with-icon .form-control:focus~.input-icon {
    color: var(--sage-dark);
}

/* Form Validation States */
.form-control.is-valid {
    border-color: #10B981;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2310B981' d='M13.5 3.5L6 11 2.5 7.5l1-1L6 9l6.5-6.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.form-control.is-invalid {
    border-color: #EF4444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23EF4444' d='M8 1a7 7 0 100 14A7 7 0 008 1zm3.5 9.5l-1 1L8 9l-2.5 2.5-1-1L7 8 4.5 5.5l1-1L8 7l2.5-2.5 1 1L9 8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.valid-feedback {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 500;
}

.invalid-feedback {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #EF4444;
    font-weight: 500;
}

/* Required Field Indicator */
.form-label:has(+ .form-control[required])::after,
.form-label:has(+ select.form-control[required])::after {
    content: ' *';
    color: #EF4444;
    font-weight: 700;
}

/* Form Helper Text */
.form-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Checkbox & Radio Styling */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    appearance: none;
    background: white;
    position: relative;
}

.form-check-input:checked {
    background: var(--sage-green);
    border-color: var(--sage-green);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="radio"]::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

/* Form Row for Side-by-Side Fields */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Floating Label Style (Optional Enhancement) */
.form-floating {
    position: relative;
}

.form-floating .form-control {
    padding: 1.5rem 1.25rem 0.5rem;
}

.form-floating .form-label {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    margin: 0;
    pointer-events: none;
    transform-origin: 0 0;
    transition: all 0.2s ease;
    color: #9CA3AF;
}

.form-floating .form-control:focus~.form-label,
.form-floating .form-control:not(:placeholder-shown)~.form-label {
    transform: scale(0.75) translateY(-0.75rem);
    color: var(--sage-green);
}

/* Submit Button Enhancement */
button[type="submit"].btn {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

button[type="submit"].btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button[type="submit"].btn:hover::before {
    width: 400px;
    height: 400px;
}

button[type="submit"].btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--sage-green);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInDown 0.4s ease;
}

.success-message {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border: 2px solid #10B981;
}

.error-message {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border: 2px solid #EF4444;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray);
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    /* Featured Hero Responsive */
    .hero-brand-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .hero-brand-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-subtext {
        font-size: 0.875rem;
    }

    .quote-modal-content {
        padding: 2rem 1.5rem;
    }

    .quote-modal-title {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--royal-maroon);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .navbar-menu.active {
        left: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .gallery-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.75rem 0;
    }

    .dropdown-item {
        color: white;
        padding: 0.75rem 1rem;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 1.5rem;
    }

    .dropdown-divider {
        background: rgba(255, 255, 255, 0.2);
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .whatsapp-float,
    .footer {
        display: none;
    }
}