/* ============================================
   SRIKANTA CREATIONS - Premium Design System
   ============================================ */

/* CSS Variables */
:root {
    --navy-darkest: #060e1a;
    --navy-dark: #0a192f;
    --navy: #0d1f3c;
    --navy-mid: #112240;
    --navy-light: #1a3158;
    --gold: #d4af37;
    --gold-light: #e8c850;
    --gold-dark: #b8941f;
    --gold-muted: rgba(212, 175, 55, 0.15);
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #ece5d5;
    --text-white: #e6e6e6;
    --text-muted: #8892a4;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --card-bg: rgba(245, 240, 232, 0.6);
    --card-border: rgba(212, 175, 55, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 72px;
}

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

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

body {
    font-family: var(--font-sans);
    background: var(--navy-dark);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Utility */
.gold { color: var(--gold); }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--navy-dark) 0%, rgba(10, 25, 47, 0.97) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo:hover {
    color: var(--gold-light);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-enquire-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-enquire-header:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn-enquire-header svg {
    width: 16px;
    height: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition);
    pointer-events: none;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

/* ============================================
   PAGES
   ============================================ */

.page {
    display: none;
    opacity: 0;
    animation: fadeInPage 0.5s ease forwards;
}

.page.active {
    display: block;
    opacity: 1;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 40%, var(--navy) 100%);
    z-index: 0;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.08) 30%, rgba(180, 140, 50, 0.15) 60%, rgba(212, 175, 55, 0.1) 100%);
    clip-path: ellipse(80% 100% at 70% 100%);
    animation: waveFloat 8s ease-in-out infinite;
}

.hero-wave-2 {
    height: 180px;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 40%, rgba(160, 120, 40, 0.12) 70%, rgba(212, 175, 55, 0.06) 100%);
    clip-path: ellipse(90% 100% at 60% 100%);
    animation: waveFloat 10s ease-in-out infinite reverse;
    animation-delay: 1s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 60px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0;
    animation: slideUp 0.6s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: slideUp 0.6s ease 0.4s forwards;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 0.6s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.6s ease 0.8s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-social {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: slideUp 0.6s ease 1s forwards;
}

.hero-social-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-social-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 80px 0;
}

.section-light {
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.section-dark {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-darkest) 100%);
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
}

.section-dark .section-title {
    color: var(--text-white);
}

/* ============================================
   SERVICE CARDS (Homepage)
   ============================================ */

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

.service-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.8);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy-dark);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */

.commitment-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.commitment-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.commitment-item:hover .commitment-icon-ring {
    background: var(--gold-muted);
    transform: scale(1.05);
}

.commitment-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.commitment-desc {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 40%, var(--navy) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 24px 40px;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    animation: slideUp 0.6s ease 0.2s both;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    animation: slideUp 0.6s ease 0.4s both;
}

/* Insurance Hero */
.insurance-hero .hero-bg {
    background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 30%, rgba(13, 31, 60, 0.95) 100%);
}

.insurance-hero .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

/* ============================================
   FEATURE CARDS (Inner Pages)
   ============================================ */

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

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.25);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--navy-dark);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================================
   PROCESS SECTION (Paper Bags)
   ============================================ */

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 24px;
    flex: 1;
    min-width: 180px;
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.process-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-desc {
    font-size: 0.85rem;
    color: var(--text-body);
}

.process-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold), var(--gold-muted));
    margin-top: 48px;
    flex-shrink: 0;
}

/* ============================================
   TAGS (Dress Stitching)
   ============================================ */

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    cursor: default;
}

.tag:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-promise-card,
.contact-details-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
}

.promise-title,
.details-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.promise-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-body);
    font-size: 0.9rem;
}

.contact-detail-item svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-map-link {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.5;
}

.contact-map-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-contact-item .contact-map-link {
    color: var(--text-muted);
}

.footer-contact-item .contact-map-link:hover {
    color: var(--gold);
}

/* ============================================
   THANK YOU OVERLAY
   ============================================ */

.thankyou-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 26, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.thankyou-overlay.active {
    display: flex;
    opacity: 1;
}

.thankyou-content {
    text-align: center;
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thankyou-checkmark {
    color: var(--gold);
    margin-bottom: 24px;
    animation: pulseGold 1.5s ease infinite;
}

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

.thankyou-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.thankyou-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ============================================
   FLOATING ENQUIRE BUTTON
   ============================================ */

.floating-enquire {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.floating-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-darkest);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.social-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
}

.social-link svg {
    color: var(--gold);
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 6px 0;
}

.footer-contact-item svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 24px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   CHATBOX WIDGET
   ============================================ */

.chatbox {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 950;
}

/* Toggle Button */
.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.4);
    position: relative;
    animation: chatPulse 3s ease-in-out infinite;
}

.chat-toggle:hover {
    transform: scale(1.08);
    border-color: var(--gold);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(212, 175, 55, 0); }
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: badgeBounce 1s ease infinite;
}

.chat-badge.hidden {
    transform: scale(0);
    opacity: 0;
}

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

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 72px;
    left: 0;
    width: 380px;
    max-height: 520px;
    background: var(--navy-dark);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.05);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Chat Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.chat-header-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 240px;
    max-height: 300px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.2) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.chat-msg {
    display: flex;
    gap: 8px;
    max-width: 85%;
    animation: msgSlideIn 0.3s ease forwards;
}

@keyframes msgSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.chat-msg.bot .chat-msg-avatar {
    background: var(--gold-muted);
    color: var(--gold);
}

.chat-msg.user .chat-msg-avatar {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
}

.chat-msg-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.chat-msg.bot .chat-msg-bubble {
    background: var(--navy-mid);
    color: var(--text-white);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-msg.user .chat-msg-bubble {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--navy-dark);
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-msg-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Quick Replies */
.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
}

.quick-reply-btn {
    padding: 7px 14px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.quick-reply-btn:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    transform: translateY(-1px);
}

/* Chat Input */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    background: var(--navy-mid);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-input:focus {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.08);
}

.chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.chat-send:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-container {
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy-mid);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

/* Modal-like view could be added later if requested */

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .services-grid,
    .features-grid,
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav {
        display: none;
    }

    .btn-enquire-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        padding: 0 24px;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .services-grid,
    .features-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        margin-top: 0;
    }

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

    .floating-enquire {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .chatbox {
        bottom: 16px;
        left: 16px;
    }

    .chat-window {
        width: calc(100vw - 32px);
        left: 0;
        max-height: 70vh;
    }

    .chat-toggle {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
