/* ===================================
   MODERN PREMIUM EVENTS WEBSITE CSS
   Animated Gradients + Glassmorphism
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --primary-pink: #E91E63;
    --primary-purple: #9C27B0;
    --deep-pink: #C2185B;
    --gold: #FFD700;
    --dark-navy: #1A1A2E;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E91E63 0%, #9C27B0 50%, #C2185B 100%);
    --gradient-cta: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

.logo-text {
    font-size: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 11px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-navy);
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.dropdown-menu li:hover {
    background: var(--light-gray);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(233, 30, 99, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-navy);
    transition: var(--transition-smooth);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Gradient Background */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 25%, #673AB7 50%, #3F51B5 75%, #2196F3 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particles Container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD700, #FFC107, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 60px;
    opacity: 0.95;
    letter-spacing: 1px;
}

/* === GLASSMORPHISM SERVICE CARDS === */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.glass-card p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.card-button {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-pink);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.card-button:hover {
    background: white;
    transform: scale(1.05);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === BOOKING SECTIONS === */
.booking-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.booking-section.hidden {
    display: none;
}

.booking-hero {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.booking-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.booking-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pink-text {
    color: var(--primary-pink);
}

.booking-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.95;
}

/* === BOOKING FORM === */
.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-form select,
.booking-form input {
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #2C3E50;
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.booking-form select:hover,
.booking-form input:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.booking-form select:focus,
.booking-form input:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

.submit-button {
    padding: 16px 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
    grid-column: 1 / -1;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.5);
}

/* === FEATURES SECTION === */
.features {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-family: var(--font-display);
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 0 0 50% 50% / 0 0 5% 5%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-family: var(--font-display);
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 48px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-pink);
}

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

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

.whatsapp-float span {
    position: absolute;
    bottom: -28px;
    font-size: 12px;
    font-weight: 600;
    background: #25D366;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover span {
    opacity: 1;
    bottom: -32px;
}

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

/* === FOOTER === */
.footer {
    background: #1A1A2E;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--primary-pink);
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--primary-pink);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.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-smooth);
}

.social-links a:hover {
    background: var(--primary-pink);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .booking-hero {
        background-attachment: scroll;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
}

/* === PAGE HEADER === */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 16px;
}

.page-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* === ABOUT PAGE === */
.about-content {
    padding: var(--section-padding) 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-text {
    margin-bottom: 60px;
}

.about-text .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-navy);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.what-we-do,
.trust-section,
.signature-service {
    margin-bottom: 80px;
}

.what-we-do h3,
.trust-section h3,
.signature-service h3 {
    font-size: 32px;
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-list {
    max-width: 700px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
}

.service-item .check {
    color: var(--primary-pink);
    font-size: 24px;
    font-weight: bold;
}

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

.trust-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}

.signature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.signature-text h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.signature-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.signature-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* === WHY CHOOSE US PAGE === */
.why-section {
    padding: var(--section-padding) 0;
}

.section-heading {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-family: var(--font-display);
    margin-bottom: 60px;
    color: var(--dark-navy);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-navy);
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 0 var(--section-padding);
    background: var(--light-gray);
}

.faq-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--primary-pink);
    margin-bottom: 40px;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    color: var(--primary-pink);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* === CONTACT PAGE === */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    margin-bottom: 24px;
}

.contact-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.contact-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 24px;
}

.contact-phone {
    font-size: 24px !important;
    font-weight: 700;
    color: var(--primary-pink) !important;
}

.contact-hours {
    font-size: 14px !important;
    color: #999 !important;
}

.contact-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.whatsapp-button {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.business-hours {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.business-hours h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--dark-navy);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
}

.hours-item.emergency {
    background: var(--gradient-primary);
    color: white;
}

.day {
    font-weight: 600;
    font-size: 16px;
}

.time {
    font-size: 15px;
    opacity: 0.9;
}

/* === RESPONSIVE FOR NEW PAGES === */
@media (max-width: 768px) {
    .signature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
