/* ============================================
   SWARAJYA GROUP - Premium Construction Website
   Elegant, Classic, Professional Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --navy-blue: #0a1628;
    --navy-light: #1a2d4a;
    --charcoal: #2d3436;
    --charcoal-light: #4a5568;
    
    /* Accent Colors */
    --gold: #c9a962;
    --gold-light: #dfc287;
    --gold-dark: #a88b4a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --cream: #faf8f5;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #dfc287 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.9));
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 78px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
    
    /* Shadows */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Section Base */
.section {
    padding: var(--section-padding);
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 106px;
    height: 106px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring,
.loader-ring-inner {
    position: absolute;
    inset: 0;
    border-top-color: var(--gold);
    border-radius: 50%;
}

.loader-ring {
    border: 3px solid rgba(201, 169, 98, 0.25);
}

.loader-ring-inner {
    inset: 6px;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    animation: preloaderSpin 1s linear infinite;
}

.loader-logo-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), rgba(10, 22, 40, 0.98));
    border: 1px solid rgba(201, 169, 98, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.08), 0 0 28px rgba(201, 169, 98, 0.28);
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

.loader-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    background: var(--gradient-dark);
    border-bottom: 1px solid rgba(201, 169, 98, 0.45);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--gradient-dark);
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    transform: scale(1.46);
    transform-origin: left center;
    transition: var(--transition-fast);
}

.logo:hover .logo-image {
    transform: scale(1.5);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

.logo-subtext {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 6px;
    margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy-blue) !important;
    padding: 12px 25px !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 25px;
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 30px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.gold-text {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 42px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.section-divider i {
    color: var(--gold);
    font-size: 20px;
}

.section-description {
    font-size: 17px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    isolation: isolate;
}

.about-image::before,
.about-image::after {
    content: none;
}

.about-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 98, 0.35);
    box-shadow: var(--shadow-heavy);
}

.about-image-badge {
    position: absolute;
    bottom: -72px;
    right: -30px;
    background: var(--gold);
    color: var(--navy-blue);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-medium);
    z-index: 3;
}

.about-image-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .text {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 3px;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-gray);
    transition: var(--transition-smooth);
    text-align: center;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-icon i {
    font-size: 32px;
    color: var(--gold);
}

.service-card:hover .service-icon {
    background: var(--gold);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Projects Section
   ============================================ */
.projects {
    background: var(--navy-blue);
    padding: 100px 0;
}

.projects .section-title {
    color: var(--white);
}

.projects .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-overlay h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Quality Section
   ============================================ */
.quality {
    background: var(--cream);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quality-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quality-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-icon i {
    font-size: 36px;
    color: var(--gold);
}

.quality-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.quality-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--white);
    overflow: hidden;
    padding: 62px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: var(--cream);
    padding: 38px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 50px;
    opacity: 0.15;
}

.quote-icon i {
    font-size: 60px;
    color: var(--gold);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(201, 169, 98, 0.35);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--gold);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    font-size: 16px;
    color: var(--gold);
    filter: drop-shadow(0 1px 3px rgba(201, 169, 98, 0.4));
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 26px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.testimonial-btn i {
    font-size: 16px;
    color: var(--navy-blue);
}

.testimonial-btn:hover i {
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
    background: var(--gold);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--navy-blue);
    padding: 62px 0;
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--navy-light);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--gold);
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.contact-map-link {
    min-height: 520px;
    position: relative;
    display: block;
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.28);
    padding: 0;
}

.contact-map-link iframe {
    pointer-events: none;
}

.contact-map-pin-tooltip {
    position: absolute;
    left: 51%;
    top: 44%;
    transform: translate(-50%, -100%);
    animation: contactMapTooltipFloat 2.2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    pointer-events: none;
    background: rgba(10, 22, 40, 0.92);
    color: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.58);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    white-space: nowrap;
    box-shadow: var(--shadow-light);
}

.contact-map-pin-tooltip img {
    position: static;
    width: 36px;
    height: 36px;
    padding: 5px;
    background: #000;
    object-fit: contain;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 auto;
    display: block;
}

.contact-map-pin-tooltip::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid rgba(10, 22, 40, 0.92);
}

@keyframes contactMapTooltipFloat {
    0%,
    100% {
        transform: translate(-50%, -100%) translateY(0);
    }

    50% {
        transform: translate(-50%, -100%) translateY(-6px);
    }
}

.contact-map-tap-target {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    text-decoration: none;
}

.contact-map-anchor {
    position: relative;
    display: block;
    line-height: 0;
}

.contact-map-anchor img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.contact-map-anchor:hover img {
    transform: none;
}

.contact-map-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: rgba(10, 22, 40, 0.82);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 169, 98, 0.42);
}

.contact-map-content {
    text-align: center;
    padding: 16px;
}

.contact-map-content h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-map-content p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.contact-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    background: var(--gradient-gold);
    color: var(--navy-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.contact-map-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.contact-map-link[data-aos] {
    opacity: 1;
    transform: none;
}

/* ============================================
   Enquiry Section
   ============================================ */
.enquiry {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.enquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.recaptcha-wrap {
    align-items: flex-start;
    gap: 10px;
}

.captcha-error-message {
    min-height: 18px;
    font-size: 13px;
    color: #e74c3c;
    margin: 0;
}

.g-recaptcha.captcha-error > div {
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-blue);
    letter-spacing: 0.5px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c757d'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 24px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: center;
    background: var(--gradient-gold);
    color: var(--navy-blue);
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-submit i {
    margin-left: 10px;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 50px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 50px;
    color: #27ae60;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 16px;
    color: var(--medium-gray);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-blue);
}

.footer-main {
    padding: 52px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: center;
    justify-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 14px;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.footer-logo .logo-subtext {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 5px;
    margin-top: 2px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
}

.footer-about p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social .social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.footer-social .social-icon i {
    font-size: 16px;
    color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact ul li span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    padding: 14px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 20px;
    color: var(--navy-blue);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .services-grid,
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        --section-padding: 66px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy-blue);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 40px;
        gap: 20px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        color: var(--white);
    }

    .nav-cta {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .about-image img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .about-image::before,
    .about-image::after {
        content: none;
    }
    
    .about-image-badge {
        bottom: -12px;
        right: 20px;
        padding: 10px 12px;
    }

    .about-image-badge .years {
        font-size: 26px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .nav-menu {
        width: min(78vw, 340px);
        right: -100%;
        height: 100vh;
        padding: 100px 32px 36px;
        justify-content: flex-start;
        gap: 18px;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(6, 16, 31, 0.2);
        backdrop-filter: blur(1.5px);
        -webkit-backdrop-filter: blur(1.5px);
        opacity: 0;
        transition: var(--transition-fast);
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
    }

    :root {
        --section-padding: 54px 0;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .section-title {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .about.section {
        padding-bottom: 44px;
    }

    .services.section {
        padding-top: 44px;
    }

    .about-image::before,
    .about-image::after {
        content: none;
    }

    .about-image {
        width: min(100%, 460px);
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 36px;
    }

    .about-image img {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .about-image-badge {
        bottom: -34px;
        right: 12px;
    }
    
    .services-grid,
    .quality-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        gap: 18px;
    }

    .quality-card {
        padding: 30px 20px;
    }

    .quality-icon {
        width: 68px;
        height: 68px;
        margin: 0 auto 18px;
    }

    .quality-icon i {
        font-size: 28px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 18px;
    }

    .service-icon i {
        font-size: 26px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .enquiry .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .enquiry-form-container {
        padding: 24px 14px;
    }
    
    .testimonials-slider {
        max-width: 100%;
    }

    .testimonial-track {
        align-items: flex-start;
    }

    .testimonial-card {
        padding: 0 8px;
    }

    .testimonial-content {
        padding: 24px 18px;
    }

    .testimonial-nav {
        margin-top: 24px;
        gap: 14px;
    }
    
    .quote-icon {
        left: 20px;
        top: 20px;
    }
    
    .quote-icon i {
        font-size: 40px;
    }
    
    .testimonial-content p {
        font-size: 16px;
        margin-bottom: 22px;
        line-height: 1.75;
        text-align: left;
    }

    .testimonial-author {
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
    }

    .author-image {
        width: 64px;
        height: 64px;
    }

    .author-info h4 {
        font-size: 17px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-about p {
        margin-bottom: 10px;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        margin-bottom: 12px;
    }

    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 14px;
    }

    .footer-links ul li,
    .footer-services ul li,
    .footer-contact ul li {
        margin-bottom: 6px;
    }

    .footer-links ul li a,
    .footer-services ul li a {
        white-space: nowrap;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom p {
        line-height: 1.5;
        font-size: 13px;
    }

    .back-to-top {
        display: none;
    }
    
    .contact-content {
        gap: 24px;
    }

    .contact-info {
        gap: 14px;
    }

    .contact-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 18px 16px;
        gap: 14px;
        border: 1px solid rgba(201, 169, 98, 0.22);
    }

    .contact-icon {
        width: 52px;
        height: 52px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-map iframe,
    .contact-map-link {
        min-height: 320px;
    }

    .contact-map-pin-tooltip {
        left: 50.8%;
        top: 47%;
        transform: translate(-50%, -145%);
        animation: contactMapTooltipFloatTablet 2.4s ease-in-out infinite;
        font-size: 12px;
        padding: 7px 12px;
        gap: 8px;
    }

    .contact-map-pin-tooltip::after {
        top: 100%;
        border-top: 7px solid rgba(10, 22, 40, 0.92);
        border-bottom: 0;
    }

    .contact-map-pin-tooltip img {
        width: 30px;
        height: 30px;
        padding: 4px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .quality-card {
        padding: 24px 16px;
    }

    .quality-icon {
        width: 60px;
        height: 60px;
    }

    .quality-icon i {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 0 8px;
    }

    .testimonial-content {
        padding: 20px 14px;
    }

    .footer-main {
        padding: 26px 0 18px;
    }

    .footer-grid {
        gap: 8px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .about-image {
        max-width: 100%;
        margin-bottom: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-image img {
        height: auto;
        max-height: none;
    }

    .about-image-badge {
        position: static;
        right: auto;
        bottom: auto;
        margin-top: 10px;
        padding: 10px 12px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .btn-submit {
        width: auto;
        align-self: center;
        justify-content: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-card {
        padding: 16px 14px;
    }

    .contact-map iframe,
    .contact-map-link {
        min-height: 250px;
    }

    .contact-map-pin-tooltip {
        left: 50.8%;
        top: 46%;
        transform: translate(-50%, -150%);
        animation: contactMapTooltipFloatMobile 2.4s ease-in-out infinite;
        font-size: 11px;
        padding: 6px 10px;
        gap: 7px;
    }

    .contact-map-pin-tooltip::after {
        top: 100%;
        border-top: 7px solid rgba(10, 22, 40, 0.92);
        border-bottom: 0;
    }

    .contact-map-pin-tooltip img {
        width: 26px;
        height: 26px;
        padding: 3px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   Animation Keyframes
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactMapTooltipFloatTablet {
    0%,
    100% {
        transform: translate(-50%, -145%) translateY(0);
    }

    50% {
        transform: translate(-50%, -145%) translateY(-2px);
    }
}

@keyframes contactMapTooltipFloatMobile {
    0%,
    100% {
        transform: translate(-50%, -150%) translateY(0);
    }

    50% {
        transform: translate(-50%, -150%) translateY(-2px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* Smooth scroll behavior for all anchor links */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-video-container,
    .back-to-top,
    .footer-social {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 50px 20px;
        background: var(--navy-blue);
    }

    .section {
        padding: 40px 0;
    }
}

/* ============================================
   Enhanced Projects Section
   ============================================ */
.projects-btn-container {
    text-align: center;
    margin-top: 50px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-show-more:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-show-more i {
    transition: var(--transition-fast);
}

.btn-show-more:hover i {
    transform: translateX(5px);
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--navy-blue);
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.95));
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* All Projects Section */
.all-projects {
    background: var(--navy-blue);
    padding: 80px 0 100px;
}

.section-header-with-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header-with-btn .section-header {
    margin-bottom: 30px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-show-more:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-show-more i {
    transition: var(--transition-fast);
}

.btn-show-more.expanded i {
    transform: rotate(180deg);
}

/* Projects List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.project-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.project-row.reverse {
    direction: rtl;
}

.project-row.reverse > * {
    direction: ltr;
}

.project-image-large {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    cursor: pointer;
}

.project-image-large img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-row:hover .project-image-large img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 15px;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.project-location {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 15px;
}

.project-location i {
    margin-right: 8px;
}

.project-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gold);
    color: var(--navy-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-view-project:hover {
    background: var(--gold-light);
    transform: translateX(5px);
}

.btn-view-project i {
    transition: var(--transition-fast);
}

.btn-view-project:hover i {
    transform: translateX(5px);
}

/* Hidden Projects */
.hidden-project {
    display: none;
}

.hidden-project.visible {
    display: grid;
}

/* ============================================
   Project Modal
   ============================================ */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 40px 20px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-modal::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.project-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--navy-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
}

.modal-close i {
    font-size: 18px;
    color: inherit;
}

.modal-close.is-cancel {
    width: auto;
    min-width: 108px;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(201, 169, 98, 0.7);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.modal-close.is-cancel:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.modal-body {
    padding: 0;
}

.modal-gallery {
    position: relative;
    height: min(70vh, 700px);
    overflow: hidden;
    background: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-modal.image-overlay-mode .modal-gallery img.zoomable-image {
    transition: transform 0.2s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

.image-zoom-controls {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 5;
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(10, 22, 40, 0.72);
    border: 1px solid rgba(201, 169, 98, 0.4);
}

.image-zoom-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.6);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.image-zoom-btn:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.image-zoom-btn.reset {
    width: auto;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.image-zoom-hint {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 5;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(201, 169, 98, 0.35);
    padding: 6px 10px;
    border-radius: 999px;
}

.project-modal.image-overlay-mode .modal-content {
    background: transparent;
    max-width: min(92vw, 1100px);
    max-height: 92vh;
    overflow: visible;
    box-shadow: none;
}

.project-modal.image-overlay-mode .modal-gallery {
    height: min(82vh, 820px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 98, 0.35);
    touch-action: none;
    padding: 12px;
}

.modal-details {
    padding: 40px;
}

.modal-details h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.modal-header-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.modal-header-row h2 {
    margin-bottom: 0;
}

.modal-rera {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--navy-blue);
    background: rgba(201, 169, 98, 0.22);
    border: 1px solid rgba(201, 169, 98, 0.5);
    border-radius: 999px;
    padding: 6px 12px;
    white-space: nowrap;
    position: relative;
    top: 3px;
}

.modal-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.modal-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.modal-location i {
    color: var(--gold);
}

.modal-description {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--navy-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 10px 18px;
    border: none;
    transition: var(--transition-fast);
}

.btn-brochure:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 98, 0.35);
}

.spec-item {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.spec-item i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
}

.spec-item h4 {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.spec-item p {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--navy-blue);
    font-weight: 600;
}

.modal-map {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
}

.modal-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.modal-map-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.project-modal.brochure-overlay-mode .modal-content {
    max-width: min(92vw, 1040px);
    background: var(--gradient-dark);
    border: 1px solid rgba(201, 169, 98, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pdf-viewer-wrap {
    padding: 22px;
    background: rgba(13, 29, 52, 0.72);
    border-radius: var(--radius-md);
}

.pdf-viewer-toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-download-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 98, 0.5);
    transition: var(--transition-fast);
}

.btn-download-pdf:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-open-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 98, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-open-pdf:hover {
    background: var(--gold);
    color: var(--navy-blue);
    border-color: var(--gold);
}

.pdf-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: min(72vh, 760px);
    color: var(--white);
    text-align: center;
    padding: 40px;
}

.pdf-fallback i {
    font-size: 56px;
    color: var(--gold);
    opacity: 0.8;
}

.pdf-fallback p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.pdf-fallback .btn-open-pdf {
    padding: 12px 24px;
    font-size: 14px;
    background: var(--gold);
    color: var(--navy-blue);
    border-color: var(--gold);
}

.project-modal.brochure-overlay-mode .modal-close.is-cancel {
    top: 16px;
    right: 16px;
    z-index: 20;
}

.project-modal.brochure-overlay-mode .pdf-viewer-wrap {
    padding-top: 70px;
}

/* Canvas-based PDF viewer (PDF.js) — fully scrollable, works on all mobile & desktop */
.pdf-canvas-container {
    width: 100%;
    max-height: min(72vh, 760px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #f4f4f4;
    border: 1px solid rgba(201, 169, 98, 0.55);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.pdf-page-wrapper {
    width: 100%;
    display: block;
    border-bottom: 6px solid #ddd;
    background: #fff;
    line-height: 0; /* prevent extra space below canvas */
}

.pdf-page-wrapper:last-child {
    border-bottom: none;
}

.pdf-page-canvas {
    display: block;
    width: 100%;
    height: auto;
}

.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 300px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.pdf-loading i {
    font-size: 32px;
    color: var(--gold);
}

@media (max-width: 768px) {
    .pdf-viewer-wrap {
        padding: 12px;
    }

    .pdf-viewer-toolbar {
        justify-content: center;
    }

    .pdf-canvas-container {
        max-height: 65vh;
    }
}

/* ============================================
   Directors Section
   ============================================ */
.directors {
    background: var(--navy-blue);
    overflow: hidden;
    padding: 62px 0;
}

.directors .section-title {
    color: var(--white);
}

.directors .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.directors-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 0;
}

.directors-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding: 10px;
    scroll-behavior: smooth;
}

.director-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    opacity: 0.6;
}

.director-card.active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.director-card:hover {
    opacity: 0.85;
}

.director-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.director-card:hover .director-image img {
    transform: scale(1.1);
}

.director-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
}

.director-info {
    padding: 25px;
    text-align: center;
}

.director-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.director-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.director-bio {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.directors-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.director-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.director-btn:hover {
    background: var(--gold);
}

.director-btn i {
    font-size: 16px;
    color: var(--white);
}

.directors-dots {
    display: flex;
    gap: 10px;
}

.directors-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.directors-dots .dot.active {
    background: var(--gold);
}

/* ============================================
   Footer Logo Update
   ============================================ */
.footer-logo {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo-image {
    display: block;
    margin: 0 auto;
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transform: scale(1.8);
    transform-origin: center center;
}

/* ============================================
   Responsive Updates for New Sections
   ============================================ */
@media (max-width: 992px) {
    .project-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-row.reverse {
        direction: ltr;
    }

    .project-image-large img {
        height: 300px;
    }

    .modal-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .directors-track {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .directors-track::-webkit-scrollbar {
        display: none;
    }

    .director-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        transform: scale(0.93);
        opacity: 0.62;
    }

    .director-card.active {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 768px) {
    .project-info h3 {
        font-size: 24px;
    }

    .modal-gallery {
        height: min(55vh, 420px);
    }

    .modal-details {
        padding: 25px;
    }

    .modal-details h2 {
        font-size: 28px;
    }

    .modal-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .modal-rera {
        font-size: 11px;
        padding: 5px 10px;
        top: 0;
    }

    .modal-specs {
        grid-template-columns: 1fr;
    }

    .director-card {
        flex: 0 0 260px;
    }

    .director-image {
        height: 220px;
    }

    .page-title {
        font-size: 38px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .page-header {
        padding: 140px 0 70px;
    }
}

@media (max-width: 480px) {
    .btn-show-more {
        width: 100%;
        justify-content: center;
    }

    .project-image-large img {
        height: 220px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .director-card {
        flex: 0 0 240px;
    }

    .logo-image {
        height: 50px;
        transform: scale(1.48);
    }

    .footer-logo-image {
        height: 50px;
        transform: scale(1.78);
    }
}
