/* ==========================================================================
   Dhamal Tent, Caterers & Event Planner - Official Design System & Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
    --bg-dark: #090d16;
    --bg-surface: #111726;
    --bg-card: #182033;
    --bg-card-hover: #1f2b45;
    
    --gold: #f59e0b;
    --gold-bright: #fbbf24;
    --gold-glow: rgba(251, 191, 36, 0.25);
    --gold-dark: #d97706;
    
    --crimson: #dc2626;
    --crimson-glow: rgba(220, 38, 38, 0.3);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --border-gold: rgba(251, 191, 36, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.25s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.25);
}

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

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

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: #ffffff;
}

a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: #ffffff;
}

.text-gold {
    color: var(--gold-bright) !important;
}

.text-green {
    color: #10b981 !important;
}

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

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

.highlight-gold {
    color: var(--gold-bright);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: capitalize;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-dark) 100%);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    color: #000;
}

.btn-secondary {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--crimson);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--crimson);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--crimson-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-gold);
    color: var(--gold-bright);
}

.btn-outline:hover {
    background: var(--gold-bright);
    color: var(--text-dark);
}

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

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Announcement Top Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, #7f1d1d 0%, #1e1b4b 50%, #7f1d1d 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contacts {
    display: flex;
    gap: 20px;
}

.top-contacts a {
    color: #e2e8f0;
}

.top-contacts a:hover {
    color: var(--gold-bright);
}

/* Header & Navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 13, 22, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    transition: var(--transition-fast);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-glow);
}

.brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1.1;
}

.brand-tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

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

.nav-item {
    font-size: 0.92rem;
    font-weight: 500;
    color: #e2e8f0;
    position: relative;
    padding: 6px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-bright);
    transition: var(--transition-fast);
}

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

.nav-item:hover,
.nav-item.active {
    color: var(--gold-bright);
}

.badge-nav {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid var(--border-gold);
    padding: 4px 12px !important;
    border-radius: var(--radius-full);
}

.badge-nav::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    font-size: 1.25rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Section Common Headings */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.sub-heading {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 130px 0 100px;
    background: radial-gradient(circle at 50% 30%, #1e112a 0%, #090d16 80%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/wedding_tent.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(4px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9,13,22,0.6) 0%, rgba(9,13,22,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-gold);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
}

.verified-badge {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(17, 23, 38, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-card);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Business GST Verification Section */
.verification-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.gst-card {
    background: var(--bg-card);
    border: 2px solid var(--gold-bright);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--shadow-gold);
    overflow: hidden;
}

.gst-card-header {
    background: linear-gradient(90deg, #1e1b4b 0%, #31102e 100%);
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gold);
}

.gst-seal {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 1.05rem;
}

.gst-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px #34d399;
}

.gst-card-body {
    padding: 30px;
}

.gst-detail-row {
    background: rgba(251, 191, 36, 0.08);
    border: 1px dashed var(--gold-bright);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-gst {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 2px;
}

.gst-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gst-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.gst-item.full-width {
    grid-column: span 2;
}

.gst-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.gst-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.gst-card-footer {
    background: rgba(9, 13, 22, 0.7);
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 15px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-card);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.about-image-frame:hover .about-img {
    transform: scale(1.03);
}

.about-experience-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--text-dark);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.badge-years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
}

.about-text {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid var(--gold-bright);
    color: var(--gold-bright);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;

}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    background: var(--bg-surface);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.service-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--crimson);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-content {
    padding: 30px 25px 25px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-floating {
    position: absolute;
    top: -24px;
    left: 25px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-checklist {
    list-style: none;
    margin-bottom: 25px;
}

.service-checklist li {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    border: 1px solid var(--border-subtle);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 13, 22, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    color: var(--gold-bright);
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: #e2e8f0;
}

/* Calculator Section */
.calculator-section {
    background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #090d16 100%);
}

.calculator-card {
    background: rgba(19, 27, 46, 0.9);
    backdrop-filter: blur(16px);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.calc-header {
    margin-bottom: 35px;
}

.calc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-control {
    background: rgba(9, 13, 22, 0.8);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-glow);
}

select.form-control option {
    background: var(--bg-dark);
    color: #ffffff;
}

.calc-result-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px dashed var(--gold-bright);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.estimated-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-bright);
    margin: 5px 0;
}

/* Trust Grid Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-fast);
}

.trust-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.2rem;
    color: var(--gold-bright);
    margin-bottom: 18px;
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

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

.contact-info-card, .contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.contact-info-card h3, .contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold-bright);
}

.contact-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item strong {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
}

.info-item p {
    font-size: 0.95rem;
    color: #ffffff;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-bright);
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.alert-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.alert-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #34d399;
}

/* Footer Section */
.site-footer {
    background: #05080f;
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold-bright);
}

.footer-logo h4 {
    font-size: 1.2rem;
    color: var(--gold-bright);
    line-height: 1;
}

.footer-about {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.verification-pill {
    font-size: 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-gst-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.footer-gst-box p {
    margin-bottom: 6px;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-normal);
}

.float-call {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--text-dark);
}

.float-whatsapp {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.float-call:hover {
    color: #000;
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    padding: 20px 25px;
    background: rgba(9, 13, 22, 0.9);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--crimson);
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
}

.modal-footer {
    padding: 15px 25px;
    background: rgba(9, 13, 22, 0.9);
    border-top: 1px solid var(--border-subtle);
}

.cert-header {
    margin-bottom: 20px;
}

.cert-emblem {
    font-size: 2.5rem;
    color: var(--gold-bright);
    margin-bottom: 8px;
}

.cert-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.cert-table th, .cert-table td {
    padding: 10px 14px;
    border: 1px solid var(--border-subtle);
    text-align: left;
    font-size: 0.9rem;
}

.cert-table th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-bright);
    width: 35%;
}

.cert-table td {
    color: #e2e8f0;
}

.highlight-text {
    font-weight: 800;
    color: var(--gold-bright) !important;
    font-family: monospace;
}

.modal-legal-content h4 {
    color: var(--gold-bright);
    margin: 18px 0 8px;
}

.modal-legal-content p {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin-bottom: 12px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement-content {
        justify-content: center;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border-gold);
        display: none;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.item-large {
        grid-column: span 1;
    }
    
    .calc-form-grid {
        grid-template-columns: 1fr;
    }
    
    .gst-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .gst-item.full-width {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
}
