/* ============================================================
   CAPTAIN TELEGRAM — Professional Website Stylesheet
   Theme Colors: White (#FFFFFF), Red (#C41E2A), Black (#1A1A1A)
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
    /* Brand Colors */
    --color-primary: #C41E2A;
    --color-primary-dark: #9E1822;
    --color-primary-light: #E8323E;
    --color-black: #1A1A1A;
    --color-black-light: #2D2D2D;
    --color-white: #FFFFFF;
    --color-off-white: #F8F8F8;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #D1D1D1;
    --color-gray-400: #9E9E9E;
    --color-gray-500: #6E6E6E;
    --color-gray-600: #4A4A4A;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

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

.section {
    padding: var(--section-padding);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ===================== IMAGE PLACEHOLDERS ===================== */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-gray-300);
    color: var(--color-gray-400);
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.image-placeholder i {
    font-size: 2.5rem;
    color: var(--color-gray-300);
}

/* ===================== NAVIGATION ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease;
    background: transparent;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar.scrolled::before {
    opacity: 1;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
}

.logo-accent {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--color-black) 0%, #1f1f1f 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1100;
    visibility: hidden;
}

.nav-menu.active {
    right: 0;
    visibility: visible;
}

/* Mobile menu header spacer */
.nav-menu::before {
    content: '';
    display: block;
    height: 80px;
    flex-shrink: 0;
}

.nav-menu li {
    width: 100%;
}

.nav-menu-header {
    display: none;
}

.nav-close-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--color-white);
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-close-btn:hover,
.nav-close-btn:active {
    background: rgba(255, 255, 255, 0.12);
}

/* Phone number at bottom of mobile menu */
.nav-menu::after {
    content: '(803) 256-3737';
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 32px 24px 28px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.nav-cta:hover {
    background: var(--color-primary-dark) !important;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    visibility: hidden;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(5.5px);
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    transform: translateY(-2.5px) rotate(-45deg);
}

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 50%, #3a1011 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 24px 100px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-description strong {
    color: var(--color-white);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    position: absolute;
    right: 60px;
    bottom: 80px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-float 4s ease-in-out infinite;
}

.badge-ring {
    position: absolute;
    border-radius: var(--radius-full);
}

.badge-ring-outer {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: badge-spin 20s linear infinite;
}

.badge-ring-outer::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary-light);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(196, 30, 42, 0.6);
}

.badge-ring-inner {
    width: 88%;
    height: 88%;
    background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.12),
        0 12px 40px rgba(196, 30, 42, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.badge-ring-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 60%
    );
    animation: badge-shimmer 3.5s ease-in-out infinite;
}

.badge-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

.badge-label-top {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.75;
    margin-bottom: 2px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.badge-number sup {
    font-size: 1.4rem;
    font-weight: 700;
    vertical-align: super;
    margin-left: 1px;
}

.badge-divider {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    margin: 6px 0;
}

.badge-label-bottom {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.9;
    line-height: 1.3;
}

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

@keyframes badge-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes badge-shimmer {
    0%, 100% { transform: translateX(-30%) translateY(-30%) rotate(135deg); }
    50% { transform: translateX(30%) translateY(30%) rotate(135deg); }
}

/* ===================== TRUST BANNER ===================== */
.trust-banner {
    background: var(--color-black);
    padding: 28px 0;
    border-bottom: 3px solid var(--color-primary);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* ===================== ABOUT SECTION ===================== */
.about {
    background: var(--color-white);
}

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

.about-image {
    position: relative;
}

/* About slideshow */
.about-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    opacity: 0;
    transition: opacity 1.6s ease;
}

.about-slide.active {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.about-image .image-placeholder {
    min-height: 500px;
    border-radius: var(--radius-lg);
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-text p {
    color: var(--color-gray-600);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--color-gray-200);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    font-weight: 500;
    margin-top: 4px;
}

/* ===================== SERVICES SECTION ===================== */
.services {
    background: var(--color-gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 3px solid var(--color-primary);
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon-no-image {
    margin-top: 28px;
}

.service-banner {
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 3px solid var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.service-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 1px, transparent 1px),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 1px, transparent 1px),
                      radial-gradient(circle at 60% 80%, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 40px 40px;
}

.service-banner-singing {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--color-primary-dark) 100%);
}

.service-banner-trolley {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a1a1a 100%);
}

.service-banner-events {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--color-primary-dark) 100%);
}

.service-banner .banner-icon {
    font-size: 3rem;
    opacity: 0.85;
    transition: transform 0.4s ease;
}

.service-card:hover .service-banner .banner-icon {
    transform: scale(1.15);
}

.service-banner span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.service-image .image-placeholder {
    min-height: 220px;
    border-radius: 0;
    border: none;
    border-bottom: 3px solid var(--color-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    margin: -30px auto 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.service-title {
    font-size: 1.4rem;
    margin: 20px 28px 12px;
    text-align: center;
}

.service-text {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    margin: 0 28px 24px;
    text-align: center;
    flex-grow: 1;
}

.service-card .btn {
    margin: 0 28px 28px;
    justify-content: center;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    position: relative;
    /* CTA BACKGROUND: Replace this with an actual photo of the trolley or an event */
    background: linear-gradient(135deg, var(--color-black) 0%, #3a1011 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* ===================== GALLERY SECTION ===================== */
.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item .image-placeholder {
    min-height: 100%;
    border-radius: 0;
    border: 2px dashed var(--color-gray-200);
}

.gallery-item-lg {
    grid-column: span 2;
}

/* ===================== OCCASIONS SECTION ===================== */
.occasions {
    background: var(--color-gray-100);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.occasion-card {
    background: var(--color-white);
    padding: 36px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--color-primary);
}

.occasion-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #fce4e6 0%, #f7c6c8 100%);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
}

.occasion-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-black);
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--color-gray-100);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border-top: 4px solid var(--color-primary);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #F5A623;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-black);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ===================== CONTACT SECTION ===================== */
.contact {
    background: var(--color-gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-description {
    color: var(--color-gray-600);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--color-gray-500);
    font-size: 0.92rem;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-link:hover {
    color: var(--color-primary-dark);
}

.map-placeholder {
    min-height: 460px;
    border-radius: var(--radius-lg);
}

.contact-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.contact-map-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-contact i {
    color: var(--color-primary);
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ===================== FLOATING CALL BUTTON ===================== */
.floating-call {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-shadow 2s infinite;
}

.floating-call:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.floating-call i {
    font-size: 1.1rem;
}

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

/* ===================== ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===================== RESPONSIVE — DESKTOP NAV ===================== */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        box-shadow: none;
        overflow: visible;
        visibility: visible;
        transition: none;
        padding: 0;
    }

    .nav-menu::before,
    .nav-menu::after {
        display: none;
    }

    .nav-menu li {
        width: auto;
    }

    .nav-cta {
        margin-left: 8px;
    }

    .nav-overlay {
        display: none !important;
    }
}

/* ===================== RESPONSIVE — TABLET ===================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item-lg {
        grid-column: span 1;
    }

    .occasions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 12px 16px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu::before {
        display: none;
    }

    .nav-menu::after {
        margin-top: 20px;
        padding: 20px 24px 16px;
    }

    .nav-link {
        width: 100%;
        padding: 14px 24px;
        font-size: 1.1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(196, 30, 42, 0.15);
        color: var(--color-white);
        padding-left: 30px;
    }

    .nav-cta {
        margin: 16px 20px 0 !important;
        padding: 16px 24px !important;
        text-align: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        border-bottom: none;
        background: var(--color-primary) !important;
        color: var(--color-white) !important;
        letter-spacing: 0.5px;
        width: calc(100% - 40px) !important;
        box-sizing: border-box;
    }

    .nav-cta:hover,
    .nav-cta:active {
        padding-left: 24px !important;
        background: var(--color-primary-dark) !important;
    }

    /* Hero */
    .hero-content {
        padding: 120px 24px 80px;
    }

    .hero-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 56px auto 0;
        width: 150px;
        height: 150px;
        display: flex;
    }

    .badge-number {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-slideshow {
        height: 320px;
    }

    .about-image img {
        height: 320px;
    }

    .about-image .image-placeholder {
        min-height: 320px;
    }

    .about-stats {
        justify-content: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    /* Occasions */
    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map-img {
        height: 400px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding-bottom: 0;
    }

    .footer-brand {
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-links,
    .footer-services {
        padding: 24px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer h4 {
        margin-bottom: 14px;
        font-size: 0.85rem;
    }

    .footer ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
    }

    .footer ul li {
        margin-bottom: 0;
    }

    .footer ul li a {
        font-size: 0.85rem;
        padding: 4px 8px;
        border-radius: var(--radius-sm);
    }

    .footer ul li a:hover {
        padding-left: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .footer-contact {
        padding: 24px 0;
    }

    .footer-contact p {
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer-contact a {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-primary-light);
    }

    .footer-bottom {
        padding: 20px 16px;
        font-size: 0.8rem;
    }

    .footer-bottom p:last-child {
        display: none;
    }

    /* Floating Call */
    .floating-call-text {
        display: none;
    }

    .floating-call {
        padding: 16px;
        border-radius: var(--radius-full);
    }
}

@media (max-width: 480px) {
    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}
