/* ========================================
   AURUM LUXURY - CORPORATE STYLES
   ======================================== */

:root {
    --primary-gold: #c9a962;
    --secondary-gold: #d4af37;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #6c757d;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Use Rubik for all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Rubik", sans-serif !important;
    font-weight: 600;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(201, 169, 98, 0.25);
    padding: 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(201, 169, 98, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 120px;
    margin-right: 1.5rem;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold) !important;
    letter-spacing: 2px;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-gold) !important;
}

.navbar-menu-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
        color: #2c2c2c !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 1.2rem 0 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-actions-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    min-width: 120px;
    margin-left: 1.5rem;
}

.btn-navbar-action {
    background: #ffffff;
    color: #2c2c2c;
    border: 2px solid var(--primary-gold);
}

.btn-sell-gold {
    background: transparent;
    color: var(--primary-gold) !important;
    border-color: var(--primary-gold);
}

.btn-buy-gold {
    background: var(--primary-gold);
    color: #1a1a1a !important;
    border-color: var(--primary-gold);
}

.btn-navbar-action {
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
}

.btn-sell-gold {
    background: transparent;
    color: var(--primary-gold) !important;
    border-color: var(--primary-gold);
}

.btn-sell-gold:hover {
    background: var(--primary-gold);
    color: var(--dark-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.3);
}

.btn-buy-gold {
    background: var(--primary-gold);
    color: var(--dark-bg) !important;
    border-color: var(--primary-gold);
}

.btn-buy-gold:hover {
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.4);
}

.navbar-toggler {
    border-color: var(--primary-gold);
    padding: 0.5rem 1rem;
    margin-right: 1rem;
        color: var(--primary-gold);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a962' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 169, 98, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse {
        background: #ffffff;
        padding: 1rem 1rem 1.2rem;
        margin-top: 0.5rem;
        border-radius: 0;
        border: 1px solid rgba(201, 169, 98, 0.25);
        border-top: none;
    }
    
    .navbar-brand-wrapper {
        min-width: auto;
    }
    
    .navbar-menu-center {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 0.7rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        text-align: center;
        color: #1d1d1d !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-gold) !important;
    }
    
    .navbar-actions-right {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-navbar-action {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}



/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    margin-top: 0;
    color: var(--white);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}

.hero-content p {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    margin-bottom: 1.6rem;
    max-width: 700px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    transform: translateY(-50%);
}

.hero-control {
    pointer-events: all;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.3);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hero-control:hover {
    background: rgba(255,255,255,0.2);
}

.hero-dots {
    position: absolute;
    z-index: 10;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-dot.active {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,1);
}

.hero-section .container {
    max-width: 100%;
    padding: 0;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-align: center;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-hero-primary {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn-hero-primary:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   SECTION STYLING
   ======================================== */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title .subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 1.5rem auto 0;
}

/* Section Divider (at bottom of sections) */
.section-divider {
    position: relative;
    z-index: 1;
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 98, 0.5), transparent);
}

/* ========================================
   CAPABILITIES SECTION
   ======================================== */
.capabilities-section {
    background: var(--white);
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a962" opacity="0.02"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.capabilities-section .section-title {
    position: relative;
    z-index: 1;
}

.capabilities-section .section-title h2 {
    color: var(--text-dark);
}

/* Capability Tabs */
.capability-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-gold);
    border-radius: 0;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 180px;
}

.tab-btn:hover {
    background: rgba(201, 169, 98, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

/* Capability Cards Grid */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.capability-grid-item {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.capability-grid-item.active {
    display: block;
}

.capability-card-dark {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.capability-card-dark:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.2);
}

.capability-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.capability-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capability-card-dark:hover .capability-card-img {
    transform: scale(1.15) rotate(2deg);
}

.capability-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(201, 169, 98, 0.95);
    color: var(--dark-bg);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capability-plus-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.capability-plus-btn i {
    font-size: 1.2rem;
    color: var(--dark-bg);
    transition: transform 0.3s ease;
}

.capability-card-dark:hover .capability-plus-btn {
    background: var(--primary-gold);
}

.capability-card-dark:hover .capability-plus-btn i {
    color: var(--white);
    transform: rotate(90deg);
}

.capability-card-body {
    padding: 2.5rem 2rem;
}

.capability-card-body h4 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .capability-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        min-width: 140px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us-section {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card-modern {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.equal-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.equal-height-card > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-label {
    color: var(--primary-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.feature-card-modern h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.4;
}

/* Interior Service Cards - Equal Height */
.interior-service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.interior-service-card img {
    flex-shrink: 0;
}

.interior-service-card > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   IMPACT/STATISTICS SECTION
   ======================================== */
.impact-section {
    background: var(--white);
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a962" opacity="0.02"/></svg>');
    background-size: 60px 60px;
    pointer-events: none;
}

.impact-section .section-title {
    position: relative;
    z-index: 1;
}

.impact-section .section-title h2 {
    color: var(--text-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.2);
    transform: translateY(-5px);
}

.stat-number-large {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number-large {
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    line-height: 1.4;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.collage-item {
    overflow: hidden;
    border: 2px solid rgba(201, 169, 98, 0.3);
    border-radius: 0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.collage-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-item:hover .collage-img {
    transform: scale(1.15);
}

/* Featured large image - spans 2 rows and 2 columns */
.collage-item.featured {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

/* Right side stacked images */
.collage-item.right-top {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.collage-item.right-bottom {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

/* Bottom images */
.collage-item.bottom-left {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.collage-item.bottom-right {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
}

/* Overlay effect */
.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(201, 169, 98, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 2rem 1.5rem;
    }
    
    .stat-number-large {
        font-size: 4rem;
    }
    
    .image-collage {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number-large {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .image-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .collage-item,
    .collage-item.featured,
    .collage-item.right-top,
    .collage-item.right-bottom,
    .collage-item.bottom-left,
    .collage-item.bottom-right {
        grid-row: auto;
        grid-column: 1 / 2;
        height: 250px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    background: var(--light-bg);
}

.about-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-content {
    padding: 3rem;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .about-image-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: var(--white);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a962" opacity="0.02"/></svg>');
    background-size: 60px 60px;
    pointer-events: none;
}

.testimonials-section .section-title {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title h2 {
    color: var(--text-dark);
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-track {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.2);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.author-info h5 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(201, 169, 98, 0.4);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover,
.carousel-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: var(--white);
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a962" opacity="0.02"/></svg>');
    background-size: 60px 60px;
    pointer-events: none;
}

.gallery-section .section-title {
    position: relative;
    z-index: 1;
}

.gallery-section .section-title h2 {
    color: var(--text-dark);
}

/* Gallery Filter Tabs */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    border: 2px solid rgba(201, 169, 98, 0.4);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.gallery-item-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s ease;
}

.gallery-item-wrapper:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.25);
    transform: translateY(-5px);
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-wrapper:hover .gallery-img {
    transform: scale(1.2) rotate(2deg);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(201, 169, 98, 0.8) 0%,
        rgba(201, 169, 98, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.gallery-item-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item-wrapper:hover .gallery-overlay-icon {
    transform: translateY(0);
}

.gallery-overlay-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.gallery-overlay-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item-wrapper:hover .gallery-overlay-title {
    transform: translateY(0);
}

.gallery-overlay-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item-wrapper:hover .gallery-overlay-subtitle {
    transform: translateY(0);
}

/* Lightbox Button */
.gallery-lightbox-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item-wrapper:hover .gallery-lightbox-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-lightbox-btn i {
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.gallery-lightbox-btn:hover {
    background: var(--primary-gold);
}

.gallery-lightbox-btn:hover i {
    color: var(--white);
}

@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .gallery-img-container {
        height: 250px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 3rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: var(--primary-gold);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

.contact-info-item:hover .contact-icon i {
    color: var(--white);
}

.contact-text h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-gray);
    margin: 0;
}

.form-control {
    border-radius: 0;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-gold);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #ffffff;
    color: #1f1f1f;
    padding: 5rem 0 2rem;
    border-top: 3px solid var(--primary-gold);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-description {
    color: #1f1f1f;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-email-input {
    border-radius: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: #1f1f1f;
    padding: 0.65rem 0.9rem;
}

.footer-email-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.15rem rgba(201, 169, 98, 0.15);
}


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.social-icon:hover {
    background: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #1f1f1f;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.btn-primary-gold {
    background: var(--primary-gold) !important;
    color: #1a1a1a !important;
    border: 2px solid var(--primary-gold) !important;
    border-radius: 0 !important;
    padding: 0.55rem 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.25s ease;
}

.btn-primary-gold:hover {
    background: #f5de84 !important;
    color: #1a1a1a !important;
    border-color: #f5de84 !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

.navbar-logo{
    width:150px;
    height: auto;
}

/* ⚡ Strong mobile safety overrides */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    .navbar {
        padding: 0.45rem 0.5rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .navbar-toggler {
        margin-right: 0;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.8rem 0 !important;
        line-height: 1.5;
        text-align: center;
    }

    .navbar-actions-right {
        width: 100%;
        margin-top: 0.65rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .btn-navbar-action {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 0.8rem;
        padding: 0.65rem 1rem;
    }

    .hero-section {
        min-height: 72vh;
        background-attachment: scroll;
        padding-top: 110px;
    }

    .hero-content {
        padding: 1.2rem;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.3rem;
    }

    .hero-buttons {
        gap: 0.6rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .capability-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .capability-card-body {
        padding: 1.3rem 1rem;
    }

    .feature-grid,
    .stats-grid,
    .row,
    .footer .row {
        grid-template-columns: 1fr;
        display: block;
    }

    .feature-card-modern,
    .stat-box,
    .contact-card,
    .testimonial-card {
        margin-bottom: 1rem;
    }

    .image-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .collage-item {
        height: 220px;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .about-content p,
    .about-list li,
    .footer-description,
    .contact-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-img-container {
        height: 220px;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .contact-icon {
        margin-right: 0;
    }

    .form-control {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .footer {
        padding: 2rem 0.5rem 1.2rem;
    }

    .footer .container {
        padding-left: 0;
        padding-right: 0;
    }

    .footer .row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .footer .input-group {
        display: flex;
        width: 100%;
        gap: 0.45rem;
        flex-wrap: wrap;
    }

    .footer .input-group .form-control {
        width: 100%;
        min-width: 0;
        border-radius: 0;
    }

    .footer .input-group .btn {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .footer-bottom {
        text-align: left;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .btn-submit {
        padding: 0.85rem 1.3rem;
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }

    .gallery-lightbox-btn {
        width: 40px;
        height: 40px;
    }
    .impact-section{
        margin:10px !important;
    }
}

/* Universal image responsiveness */
img,
.gallery-img,
.collage-img,
.about-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Prevent accidental horizontal overflow from long text */
* {
    word-wrap: break-word;
    hyphens: auto;
}

.footer-logo{
    width: 150px;
    height: auto;
}
