/* ========================================
   Grand Akshaya - PREMIUM REAL ESTATE CSS
   Multi-Page Version
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #1B4D3E;
    --primary-light: #2A7A5F;
    --primary-dark: #0F2E25;
    --accent: #D4A843;
    --accent-light: #E5C56E;
    --accent-dark: #B08A2A;
    --gradient-1: linear-gradient(135deg, #1B4D3E 0%, #2A7A5F 50%, #1abc9c 100%);
    --gradient-2: linear-gradient(135deg, #D4A843 0%, #E5C56E 100%);
    --gradient-text: linear-gradient(135deg, #2A7A5F, #1abc9c, #D4A843);
    --gradient-hero: linear-gradient(135deg, #0A1628 0%, #1B4D3E 50%, #0F2E25 100%);
    --bg-primary: #f7f9f8;
    --bg-dark: #0A1628;
    --bg-dark-card: #12233A;
    --bg-dark-card-hover: #1A3050;
    --text-primary: #1a1a2e;
    --text-secondary: #5a6a7e;
    --text-light: #c8d6e5;
    --white: #ffffff;
    --border-light: rgba(27, 77, 62, 0.1);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(42, 122, 95, 0.25);
    --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary-light);
    color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ---- Scroll Progress Indicator ---- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-text);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(42, 122, 95, 0.5);
    transition: width 0.1s ease-out;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    padding: 10px 0;
    transition: var(--transition);
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    z-index: 1050;
    border-bottom: 1px solid rgba(27, 77, 62, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(27, 77, 62, 0.06);
    border-bottom-color: rgba(27, 77, 62, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0;
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(27, 77, 62, 0.05);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-light);
}

.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='%231B4D3E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Enhanced Logo Container ---- */
.brand-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    padding: 4px 8px;
    transition: var(--transition);
}

.brand-logo-container:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 16px rgba(212, 168, 67, 0.18));
}

.brand-logo-enhanced {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Subtle shimmer sweep on hover */
.brand-logo-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 168, 67, 0.08) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(212, 168, 67, 0.08) 60%,
            transparent 100%);
    z-index: 3;
    pointer-events: none;
    transition: none;
}

.brand-logo-container:hover .brand-logo-shimmer {
    animation: logoShimmer 0.8s ease forwards;
}

@keyframes logoShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Scrolled state: compact logo */
.navbar.scrolled .brand-logo-enhanced {
    height: 44px;
}

.navbar.scrolled .brand-logo-container {
    padding: 2px 6px;
}

.footer-tagline {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.75;
}

.navbar .nav-link {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-light);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    vertical-align: middle;
    margin-left: 4px;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(27, 77, 62, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 10px !important;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(42, 122, 95, 0.08);
    color: var(--primary);
}

.btn-cta-nav {
    background: var(--gradient-1);
    color: var(--white) !important;
    font-weight: 700;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.25);
    border: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.35);
    color: var(--white) !important;
}

.navbar-toggler {
    border: 1px solid rgba(27, 77, 62, 0.3);
    padding: 6px 10px;
}

.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%2815, 46, 37, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../newimages/EAST-FACING-VILLA/VILLA 01 (1).jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.93) 0%, rgba(27, 77, 62, 0.82) 50%, rgba(10, 22, 40, 0.91) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 168, 67, 0.4);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientAnim 3s ease infinite;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    background: var(--gradient-2);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
    border: none;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.5);
    color: var(--primary-dark);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

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

.stat-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.hero-image-badge i {
    font-size: 1.1rem;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */
.page-hero {
    background: var(--bg-dark);
    padding: 160px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 122, 95, 0.08) 0%, transparent 70%);
    animation: floatOrb 20s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    animation: floatOrb 25s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    75% {
        transform: translate(20px, 30px);
    }
}

.page-hero .hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.page-hero .hero-breadcrumb a {
    color: var(--accent);
    font-weight: 500;
}

.page-hero .hero-breadcrumb a:hover {
    color: var(--accent-light);
}

.page-hero .hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.page-hero .page-hero-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.page-hero .hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.page-hero .hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.section-padding {
    padding: 40px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--white);
}

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

.section-badge {
    display: inline-block;
    background: rgba(42, 122, 95, 0.1);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(42, 122, 95, 0.2);
    margin-bottom: 14px;
}

.section-dark .section-badge {
    background: rgba(212, 168, 67, 0.1);
    color: var(--accent);
    border-color: rgba(212, 168, 67, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
}

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

.section-dark .section-desc {
    color: var(--text-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-telugu-card {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(42, 122, 95, 0.08));
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.telugu-header {
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.about-text-telugu {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 2;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 67, 0.3);
}

.about-feature-item i {
    color: var(--primary);
    background: rgba(27, 77, 62, 0.08);
    padding: 8px;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.service-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    background: var(--bg-dark-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(42, 122, 95, 0.3);
}

.service-card .service-icon-wrap i {
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap i {
    transform: scale(1.15) rotate(5deg);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(42, 122, 95, 0.3);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-text);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

/* Service card variant for light backgrounds */
.service-card-light {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-light:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.service-card-light .service-icon-wrap {
    background: linear-gradient(135deg, rgba(42, 122, 95, 0.1), rgba(26, 188, 156, 0.1));
    color: var(--primary);
}

.service-card-light:hover .service-icon-wrap {
    background: var(--gradient-1);
    color: var(--white);
}

.service-card-light .service-title {
    color: var(--primary-dark);
}

.service-card-light .service-desc {
    color: var(--text-secondary);
}

/* ========================================
   WHY CHOOSE GRAND AKSHAYA
   ======================================== */
.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.why-choose-bg-orb--1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -150px;
    right: -100px;
    animation: floatOrb 20s ease-in-out infinite;
}

.why-choose-bg-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -120px;
    left: -80px;
    animation: floatOrb 25s ease-in-out infinite reverse;
}

.why-choose-intro {
    position: relative;
    z-index: 1;
}

.why-choose-lead {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 32px;
}

/* Counter Strip */
.why-choose-counters {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    backdrop-filter: blur(10px);
}

.why-counter-item {
    text-align: center;
    flex: 1;
}

.why-counter-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.why-counter-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.why-counter-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 6px;
    font-weight: 500;
}

.why-counter-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Feature Cards Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 67, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.why-choose-card-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-card-number {
    color: rgba(212, 168, 67, 0.12);
}

.why-choose-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(42, 122, 95, 0.15), rgba(26, 188, 156, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-card-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(42, 122, 95, 0.3);
}

.why-choose-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.why-choose-card-desc {
    color: rgba(200, 214, 229, 0.75);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

/* Why Choose Card bottom accent line */
.why-choose-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 767.98px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-counters {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .why-counter-divider {
        width: 60px;
        height: 1px;
    }
}

/* Keep old .why-card styles for about page compatibility */
.why-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(42, 122, 95, 0.1), rgba(26, 188, 156, 0.1));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin-bottom: 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.1);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.why-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MISSION & VISION
   ======================================== */
.mv-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(42, 122, 95, 0.3);
    box-shadow: var(--shadow-glow);
}

.mv-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(42, 122, 95, 0.3);
}

.vision-card .mv-icon-wrap {
    background: var(--gradient-2);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.mv-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.mv-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.mv-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(42, 122, 95, 0.06);
}

.vision-card .mv-decoration {
    background: rgba(212, 168, 67, 0.06);
}

/* ========================================
   GALLERY / PROPERTIES
   ======================================== */
.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border-light);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.gallery-tag {
    background: var(--gradient-2);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info {
    padding: 20px 24px;
}

.gallery-info h5 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.gallery-info p i {
    color: var(--accent);
}

/* Property Filter Tabs */
.property-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(42, 122, 95, 0.3);
}

/* ========================================
   SERVICES PROCESS
   ======================================== */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(42, 122, 95, 0.3);
}

.process-step h5 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.process-connector {
    position: absolute;
    top: 58px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--gradient-text);
}

/* ========================================
   TIMELINE
   ======================================== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 0 0 3px var(--accent);
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.timeline-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: var(--gradient-1);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-hero-primary {
    position: relative;
    z-index: 2;
}

.cta-banner .btn-hero-outline {
    position: relative;
    z-index: 2;
}

/* ========================================
   HOME - SERVICES PREVIEW
   ======================================== */
.services-preview-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.services-preview-card .service-icon-wrap i {
    transition: var(--transition);
}

.services-preview-card:hover .service-icon-wrap i {
    transform: scale(1.15) rotate(5deg);
}

.services-preview-card .service-icon-wrap {
    background: linear-gradient(135deg, rgba(42, 122, 95, 0.1), rgba(26, 188, 156, 0.1));
    color: var(--primary);
}

.services-preview-card:hover .service-icon-wrap {
    background: var(--gradient-1);
    color: var(--white);
}

.services-preview-card .service-title {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.services-preview-card .service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(42, 122, 95, 0.3);
    transform: translateX(6px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.contact-info-card a:hover {
    color: var(--accent);
}

/* Contact form on light background */
.contact-form-wrap {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form-light {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-form-light .form-floating>.form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.contact-form-light .form-floating>.form-control:focus {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(42, 122, 95, 0.15);
    color: var(--text-primary);
}

.contact-form-light .form-floating>label {
    color: var(--text-secondary);
}

.contact-form-light .form-floating>.form-control:focus~label,
.contact-form-light .form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary);
}

.form-floating>.form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-floating>.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
    color: var(--white);
}

.form-floating>label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--accent);
}

.consent-check {
    padding-left: 28px;
}

.consent-check .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    cursor: pointer;
    margin-left: -28px;
}

.consent-check .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.consent-check .form-check-label {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit {
    background: var(--gradient-2);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.5);
    color: var(--primary-dark);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    position: relative;
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-newsletter .form-control:focus {
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
    border-color: var(--accent) !important;
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-full {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin: -40px 0 10px 0;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    padding: 20px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-text);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1040;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.12);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    animation: pulseGlow 2s infinite;
}

.call-btn {
    background: var(--gradient-1);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.float-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(10, 22, 40, 0.95);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 46px;
    height: 46px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1040;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-4px);
}

/* ========================================
   FORM ALERTS
   ======================================== */
.form-alert-success {
    background: rgba(26, 188, 156, 0.15);
    border: 1px solid rgba(26, 188, 156, 0.3);
    color: #1abc9c;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   LEGAL PAGES (Terms & Privacy)
   ======================================== */
.legal-hero {
    background: var(--bg-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(42, 122, 95, 0.05);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.legal-hero p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-primary);
}

/* ========================================
   ENHANCED GALLERY & LIGHTBOX
   ======================================== */
.gallery-video-card .gallery-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.gallery-video-card:hover .gallery-img-wrap::after {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.gallery-video-card:hover .gallery-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-section {
    background: linear-gradient(to bottom, var(--bg-light), var(--white));
    overflow: hidden;
}

.testimonial-track-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
    padding: 0 15px;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    width: 400px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.testimonial-quote {
    color: rgba(212, 168, 67, 0.2);
    font-size: 4rem;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h6 {
    margin: 0 0 3px 0;
    font-family: var(--font-display);
    color: var(--primary-dark);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* ========================================
   LOCATION ADVANTAGES
   ======================================== */
.loc-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loc-advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.loc-advantage-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateX(5px);
}

.loc-adv-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.loc-advantage-card h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-display);
}

.loc-advantage-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.loc-map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.loc-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(80%) contrast(1.2) brightness(0.9);
    transition: var(--transition);
}

.loc-map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

.loc-map-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.loc-map-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.loc-map-badge span {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   SITE VISIT ENQUIRY
   ======================================== */
.site-visit-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.site-visit-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(42, 122, 95, 0.05);
}

.site-visit-lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.site-visit-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sv-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-badge-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.sv-badge-item span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.site-visit-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-light);
}

.sv-form-title {
    font-family: var(--font-display);
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.sv-form-title i {
    color: var(--accent);
}

.site-visit-form-wrap .form-floating>.form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.site-visit-form-wrap .form-floating>.form-control:focus {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(42, 122, 95, 0.15);
}

.site-visit-form-wrap .form-floating>label {
    color: var(--text-secondary);
}

.sv-form-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.sv-form-footer a {
    color: #25D366;
    font-weight: 600;
}

.sv-form-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   PROJECT HIGHLIGHTS
   ======================================== */
.ph-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ph-tab {
    background: var(--white);
    border: 2px solid var(--border-light);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.ph-tab:hover {
    background: rgba(42, 122, 95, 0.05);
    border-color: rgba(42, 122, 95, 0.3);
    color: var(--primary);
    transform: translateY(-2px);
}

.ph-tab.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(42, 122, 95, 0.3);
}

.ph-tab i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ph-tab:hover i,
.ph-tab.active i {
    transform: scale(1.2);
}

.ph-tab-content {
    display: none;
    opacity: 0;
    animation: fadeInTab 0.5s ease forwards;
}

.ph-tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ph-showcase-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ph-showcase-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ph-showcase-image:hover img {
    transform: scale(1.05);
}

.ph-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ph-info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.ph-info-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.ph-info-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ph-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ph-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

.ph-features-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
    .brand-logo-enhanced {
        height: 42px;
        max-width: 200px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        border: 1px solid rgba(27, 77, 62, 0.1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .btn-cta-nav {
        display: inline-block;
        margin-top: 10px;
    }

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

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-image {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 30px 0;
    }

    .contact-form-wrap,
    .contact-form-light {
        padding: 24px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 20px;
    }

    .process-connector {
        display: none;
    }

    .site-visit-badges {
        grid-template-columns: 1fr;
    }

    .loc-map-wrapper {
        min-height: 350px;
        margin-top: 30px;
    }
}

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

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -15px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .why-card {
        padding: 28px 20px;
    }

    .mv-card {
        padding: 32px 24px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }

    .page-hero {
        padding: 130px 0 70px;
    }

    .testimonial-card {
        width: 320px;
        padding: 25px 20px;
    }

    .site-visit-form-wrap {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

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

    .property-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
    }

    .sv-form-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--border-light);
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-light) !important;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(42, 122, 95, 0.06), rgba(26, 188, 156, 0.06));
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231B4D3E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4A843'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 18px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.accordion-body a {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(42, 122, 95, 0.3);
    text-underline-offset: 3px;
}

.accordion-body a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ---- Responsive: Enhanced Logo ---- */
@media (max-width: 991.98px) {
    .brand-logo-enhanced {
        height: 50px;
    }

    .navbar.scrolled .brand-logo-enhanced {
        height: 40px;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: var(--radius-sm);
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(27, 77, 62, 0.05);
    }

    .btn-cta-nav {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .brand-logo-enhanced {
        height: 42px;
    }

    .navbar.scrolled .brand-logo-enhanced {
        height: 36px;
    }

    .brand-logo-container {
        padding: 2px 4px;
    }
}

@media (max-width: 575.98px) {
    .brand-logo-enhanced {
        height: 36px;
    }

    .navbar.scrolled .brand-logo-enhanced {
        height: 30px;
    }

    .brand-logo-container {
        padding: 2px 2px;
    }
}

.footer-logo-full {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ========================================
   TEAM SECTION ENHANCEMENTS
   ======================================== */
.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.05) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.team-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 67, 0.1);
}

.team-card:hover::before {
    height: 100%;
}

.team-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 24px auto;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.team-card:hover .team-icon {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 10px 25px rgba(212, 168, 67, 0.3);
}

.team-icon i {
    transition: transform 0.4s ease;
}

.team-card:hover .team-icon i {
    transform: rotateY(-180deg);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--accent);
}

.team-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.team-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
    transition: color 0.3s ease;
}

.team-card:hover .team-desc {
    color: rgba(255, 255, 255, 0.9);
}

.team-card.featured-card {
    border: 2px solid rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.05);
}

.team-card.featured-card .team-icon {
    background: var(--gradient-1);
    border-color: transparent;
}

.team-card.featured-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 168, 67, 0.2);
}

.team-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Horizontal Team Card for Chairman */
.team-card-horizontal {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.team-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 168, 67, 0.08) 0%, transparent 100%);
    transition: width 0.4s ease;
    z-index: 0;
}

.team-card-horizontal:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 168, 67, 0.15);
}

.team-card-horizontal:hover::before {
    width: 100%;
}

.team-card-horizontal > .row {
    position: relative;
    z-index: 1;
}

.team-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.2);
    transition: all 0.4s ease;
}

.team-card-horizontal:hover .team-icon-large {
    transform: scale(1.05) rotateY(180deg);
    box-shadow: 0 15px 35px rgba(212, 168, 67, 0.4);
}

.team-card-horizontal:hover .team-icon-large i {
    transform: rotateY(-180deg);
}

@media (max-width: 767.98px) {
    .team-card-horizontal {
        text-align: center;
        padding: 30px 20px;
    }
    .team-card-horizontal .text-start {
        text-align: center !important;
        margin-top: 24px;
    }
}