@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Dark Mode (Default) */
    --primary-color: #D4AF37;
    /* Gold - Luxury Accent */
    --bg-color: #050505;
    /* Deepest Charcoal */
    --bg-secondary: #0a0a0a;
    /* Subtle Contrast */
    --bg-gradient: radial-gradient(circle at top center, #1a1a1a 0%, #050505 100%);
    /* Rich Depth */

    --text-color: #f4f4f4;
    /* Off-white for comfort (not stark white) */
    --text-muted: #a0a0a0;
    /* Silver grey */

    --card-bg: rgba(20, 20, 20, 0.6);
    /* Glassy Dark */
    --card-border: rgba(255, 255, 255, 0.08);
    /* Subtle highlight */

    --nav-bg: rgba(5, 5, 5, 0.95);
    --overlay-color: rgba(0, 0, 0, 0.7);
    --overlay-img: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
    /* For image backgrounds */
    --hero-bg-img: url('../images/hero-bg.jpg');
    /* Default Dark Hero */
    --shadow-color: rgba(0, 0, 0, 0.6);

    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Silk smooth */

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 96px;
}

/* Premium Light Mode (Class-One) */
[data-theme="light"] {
    /* Backgrounds: Expensive & Refined */
    --bg-color: #FCF8F8;
    /* Warm Porcelain */
    --bg-secondary: #FBEFEF;
    /* Soft Rose White */
    --bg-gradient: linear-gradient(180deg, #FCF8F8 0%, #FBEFEF 100%);

    /* Text: High Contrast Charcoal */
    --text-color: #2A2A2A;
    /* Sharp & Modern */
    --text-muted: #555555;
    /* Neutral Grey */

    /* Accents: Strict Palette Usage */
    --primary-color: #D48888;
    /* Adjusted #F5AFAF for better contrast/visibility on white */

    /* Cards: Lightweight & Clean */
    --card-bg: #FFFFFF;
    --card-border: #F9DFDF;
    /* Palette Border */

    --nav-bg: rgba(252, 248, 248, 0.98);
    --overlay-color: rgba(252, 248, 248, 0.85);
    /* Milky overlay */
    --overlay-img: linear-gradient(rgba(252, 248, 248, 0.85), rgba(252, 248, 248, 0.85));
    /* Adjusted opacity for new image */
    --hero-bg-img: url('../images/hero-bg-light.png');
    /* Classic White Hero */
    --shadow-color: rgba(0, 0, 0, 0.06);
    /* Soft, expensive shadow */
    --input-bg: rgba(255, 255, 255, 1);
    /* Clean white inputs */
}

/* Improve font loading performance */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    /* Added depth */
    background-attachment: fixed;
    /* Parallax feel for the gradient */
    color: var(--text-color);
    line-height: 1.8;
    /* Editorial breathing room */
    overflow-x: hidden;
    letter-spacing: 0.02em;
    /* Premium feel */
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
    /* More air */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Wider spacing */
}

.section-title span {
    color: var(--primary-color);
}

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

.btn-primary {
    display: inline-block;
    background-color: transparent;
    /* Elegant Outline Start */
    color: var(--primary-color);
    padding: 14px 36px;
    border-radius: 2px;
    /* Sharper, more professional */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary-color);
    /* Thinner, refined border */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover {
    color: var(--bg-color);
    /* Contrast on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Soft lift */
    border-color: var(--primary-color);
}

.btn-primary:hover::before {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-color);
    transition: var(--transition);
    padding: 8px;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    color: var(--primary-color);
    transform: rotate(15deg) scale(1.1);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.main-header.scrolled {
    background-color: var(--nav-bg);
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.logo a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.logo span {
    transition: var(--transition);
}

.logo a:hover span {
    color: var(--text-color);
    text-shadow: none;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hero-bg-img);
    /* Dynamic Image */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-img);
    /* Dynamic Overlay */
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    /* Dynamic Text */
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    /* Dynamic Text */
    margin-bottom: 30px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-down i {
    margin-top: 5px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        /* Subtle float */
    }
}

/* Timeline / Our Journey - Next Level */
.timeline-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 20px 0;
}

/* Vertical Core Line */
.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: rgba(212, 175, 55, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Animated Progress Line */
.timeline-progress {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), #ffdb58, var(--primary-color));
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 0%;
    /* Adjusted by JS */
    border-radius: 10px;
    z-index: 1;
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px rgba(212, 175, 55, 0.5);
    transition: height 0.1s linear;
}

.timeline-item {
    margin-bottom: 100px;
    position: relative;
    width: 50%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
    transform: translateX(-50px);
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
    transform: translateX(50px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Circle Nodes */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--bg-color);
    border: 4px solid rgba(212, 175, 55, 0.3);
    top: 20px;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.5s ease;
}

.timeline-item.left::after {
    right: -14px;
}

.timeline-item.right::after {
    left: -14px;
}

.timeline-item.node-active::after {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.2);
}

.timeline-content {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

/* Year Highlight background */
.timeline-content h2 {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--primary-color);
    pointer-events: none;
    transition: all 0.5s ease;
}

.timeline-item:hover .timeline-content h2 {
    opacity: 0.3;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Content Details */
.timeline-content .year-small {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content .subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {

    .timeline::before,
    .timeline-progress {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0 !important;
        transform: translateX(30px);
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: 18px !important;
        right: auto !important;
    }

    .timeline-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: 23px;
        right: auto;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        border-right: none;
        border-left: 3px solid var(--primary-color);
    }
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-item .overlay h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-secondary);
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-category-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.service-category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.service-category-card:hover::before {
    transform: scaleX(1);
}

/* Remove old card-bg-image styles if no longer needed, or keep for potential future use */
.card-bg-image {
    display: none;
}

.card-bottom-img-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    /* Reduced height for multi-row if needed */
    width: 100%;
    position: relative;
    border: none;
    display: flex;
    gap: 10px;
    opacity: 0;
    /* Hidden by default as requested */
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
}

.service-category-card:hover .card-bottom-img-container {
    opacity: 1;
    /* Show on hover */
    transform: translateY(0);
}

.card-bottom-img-container img {
    flex: 1;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.card-bottom-img-container img:hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-category-card:hover .category-header i {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.service-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    color: #ccc;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    /* Reset flex if it was flex before, or keep block */
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '\f00c';
    /* Font Awesome Check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
    /* Reset old styles */
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

.service-list li:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-list li:hover::before {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* Testimonials */
.testimonials-section {
    background-image: var(--overlay-img), url('../images/testimonials-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    /* For button positioning */
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
    /* Space for buttons */
}

.testimonial-slide {
    max-width: 800px;
    margin: 0 auto;
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    /* Visible when active */
}

.testimonial-slide .stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-slide p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 2px solid var(--primary-color);
}

/* Testimonial Navigation Buttons */
.testi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.testi-nav-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.testi-nav-btn.prev {
    left: 0;
}

.testi-nav-btn.next {
    right: 0;
}

/* Footer */
/* Footer & Contact - Refined */
/* Footer & Contact - Refined */
.footer-section {
    background-color: var(--bg-secondary);
    /* Dynamic */
    padding: 100px 0 50px;
    border-top: 1px solid var(--card-border);
}

/* Contact Info centered */
.contact-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 70px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    /* Dynamic muted text */
    font-size: 0.95rem;
}

.info-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.info-item a {
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--text-color);
    /* Dynamic strong text (Dark in light mode) */
}

.info-item a:hover {
    transform: scale(1.05) translateY(-2px);
    color: #000;
    /* Dark hover as requested */
    text-shadow: none;
    /* Clean look */
}

.social-links {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.social-follow-text {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-links a {
    color: var(--text-color);
    /* Fix: Use dynamic text color (Dark in light mode) */
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    /* Dark text on hover as requested */
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
}

.social-links i {
    transition: transform 0.4s ease;
}

.social-links a:hover i {
    transform: rotate(360deg);
}

/* Specific Brand Hover Colors - OPTIONAL: Commented out to maintain strict luxury theme
.social-links a.facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
*/

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Locate Us Section */
.locate-us-section {
    margin-top: 50px;
    width: 100%;
    text-align: center;
}



.locations-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.location-card:hover .icon-box {
    background: var(--primary-color);
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.location-card:hover .icon-box i {
    color: #000;
}

.location-card h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loc-details p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.phone-link {
    display: block;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.phone-link i {
    display: inline-block;
    transform: scaleX(-1);
    transition: var(--transition);
}

.phone-link:hover i {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color);
}

.map-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.map-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .main-header .header-container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: block;
        color: #fff;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .header-cta {
        display: none;
        /* Hide CTA on small mobile or move to menu */
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Slideshow Styles */
.slideshow-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.slide {
    display: none;
    position: relative;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

.slide-caption h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.slide-caption p {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots-container {
    text-align: center;
    padding: 20px;
    background: #000;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 8px;
    background-color: #333;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--primary-color);
}

.autoplay-toggle {
    margin-top: 15px;
    padding: 8px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.autoplay-toggle:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .slide img {
        height: 400px;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    padding: 15px;
    color: var(--text-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.c-item i {
    font-size: 1.5rem;
    padding-top: 5px;
}

.c-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.c-item p,
.c-item p a {
    color: #aaa;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
}

.c-item p a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mirror Phone Icons as requested */
.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
    /* Ensure transform works */
}

/* Contact Page Location Links */
.location-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.location-link:hover h4,

/* =========================================
   Portfolio Case Studies & Details
   ========================================= */

/* Portfolio Listing (Case Study Grid) */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 4/3;
    /* Standard aspect ratio */
}

.case-study-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.case-study-card:hover img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-overlay {
    transform: translateY(0);
}

.case-study-overlay h3 {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.case-study-overlay p {
    color: #ccc;
    font-size: 1rem;
}

/* Portfolio Details - Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Gallery Grid in Details */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    /* Square thumbnails */
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    /* Suggests click to view (lightbox future) */
}

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

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

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-tabs {
        gap: 10px;
    }

    .tab-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* Glassmorphism Cards */
.service-category-card,
.case-study-card,
.testimonial-slide {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 30px var(--shadow-color);
}

.service-category-card:hover,
.case-study-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Founder Image Glow */
.founder-img {
    transition: all 0.4s ease;
}

.founder-img:hover {
    box-shadow: 0 0 30px var(--primary-color), 0 0 60px rgba(212, 175, 55, 0.4) !important;
    border-color: #fff !important;
    transform: scale(1.02);
}