/* CSS DESIGN SYSTEM - MAA ARBUDA PROPERTIES
   Colors: Luxury Black (#0F0F0F), Gold (#D4AF37), White (#FFFFFF), Light Grey (#F5F5F5)
   Fonts: Cormorant Garamond (Serif), Inter (Sans-Serif)
*/

:root {
    --color-bg-primary: #0F0F0F;
    --color-bg-secondary: #161616;
    --color-bg-tertiary: #1E1E1E;
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #AA7C11;
    --color-text-light: #FFFFFF;
    --color-text-muted: #B3B3B3;
    --color-text-dark: #1A1A1A;
    --color-glass-bg: rgba(22, 22, 22, 0.65);
    --color-glass-border: rgba(212, 175, 55, 0.18);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --shadow-gold-glow: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* 1. RESET & GENERAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-light);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--color-bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
.gold-text {
    color: var(--color-gold);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Common Section Layouts */
section {
    padding: 100px 0;
    position: relative;
}

.section-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 20px auto 30px auto;
}

.title-divider-left {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 15px 0 25px 0;
}

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

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-primary);
    border: 1px solid var(--color-gold);
    box-shadow: var(--shadow-gold-glow);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
}

.btn-outline-white:hover {
    border-color: var(--color-gold);
    color: var(--color-bg-primary);
    background-color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

/* Ripple Animation Effect for Buttons */
.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.btn-ripple:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* 2. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(15,15,15,0.9), rgba(15,15,15,0));
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.header-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
}

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

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

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

.nav-cta {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-text-light);
    transition: var(--transition-fast);
}

/* 3. HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 9s linear forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.65) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    margin-top: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    font-size: 0.65rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.scroll-link:hover {
    color: var(--color-gold);
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 1px solid var(--color-text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* 4. ABOUT SECTION */
.about-section {
    background-color: var(--color-bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 70px;
    align-items: start;
}

.about-intro .section-badge {
    margin-bottom: 10px;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    line-height: 1.8;
    margin-bottom: 25px;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-signature-block {
    margin-top: 40px;
}

.sig-line {
    width: 100px;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 12px;
}

.sig-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-gold);
}

.subsection-title {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.subsection-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 35px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 30px 25px;
    transition: var(--transition-smooth);
}

.feature-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
}

.feature-card:hover .feature-card-border {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* 5. ACHIEVEMENTS SECTION (COUNTERS) */
.achievements-section {
    background: linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.95)), url('office5.jpeg') center/cover fixed;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    position: relative;
}

.counter-icon-wrapper {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.counter-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-light);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-number::after {
    content: '+';
    color: var(--color-gold);
    font-size: 2.2rem;
    vertical-align: super;
    margin-left: 2px;
}

.counter-item:last-child .counter-number::after {
    content: '+';
}

.counter-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* 6. FEATURED PROJECTS SHOWCASE */
.projects-section {
    background-color: var(--color-bg-secondary);
}

.section-header-centered {
    margin-bottom: 60px;
}

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

/* For project cards flow layout, we have 5 projects. Let's make first 3 grid, next 2 grid offset */
.projects-grid .project-card:nth-child(4),
.projects-grid .project-card:nth-child(5) {
    grid-column: span 1.5; /* Note: JS handles grid alignments or we keep 3 column grid */
}

/* Let's set responsive grid for projects grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--color-bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}

.project-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.12);
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-primary);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.project-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 5;
}

.project-card:hover .project-img-overlay {
    opacity: 1;
}

.project-quick-view {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: rgba(15, 15, 15, 0.8);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.project-quick-view:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-primary);
}

.project-details {
    padding: 25px;
}

.project-name {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.project-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.project-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-specs i {
    color: var(--color-gold);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-status-badge {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}

.dot.pulse {
    animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.project-cta-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.project-cta-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-primary);
}

/* Gradient fallback block for office.jpeg card in project list */
.project-img-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 15, 15, 0.1), rgba(15, 15, 15, 0.45));
    z-index: 2;
}

/* 7. TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--color-bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 60px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-dark);
    border-radius: 6px;
}

.testimonial-slider {
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-rating {
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.25rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Slider Controls */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* 8. OWNER / FOUNDER SECTION */
.owner-section {
    background-color: var(--color-bg-secondary);
}

.owner-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    align-items: center;
}

.owner-image-wrapper {
    position: relative;
}

.luxury-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-dark);
}

.owner-office-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.frame-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(15, 15, 15, 0.85);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.office-caption {
    margin-top: 15px;
    text-align: center;
}

.office-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.office-address {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.owner-name {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 5px;
}

.owner-title {
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

.owner-message-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--color-gold);
    padding: 30px 40px;
    margin: 30px 0;
    border-radius: 0 6px 6px 0;
}

.quote-icon-gold {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.15);
}

.quote-icon-gold-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.15);
}

.owner-quote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-light);
    position: relative;
    z-index: 2;
}

.owner-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cert-item i {
    font-size: 1.1rem;
}

.owner-cta-group {
    display: flex;
    gap: 20px;
}

/* 9. CONTACT SECTION & INQUIRY FORM */
.contact-section {
    background-color: var(--color-bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-subheader {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail-card:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.25);
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-gold);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-top: 3px;
}

/* Contact Form Specific Styling */
.contact-form-col {
    padding: 40px 30px;
}

.contact-form-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.align-start {
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
    pointer-events: none;
}

.mt-10 {
    margin-top: 15px;
}

.input-icon-text {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
}

.form-input {
    width: 100%;
    background-color: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 14px 16px 14px 44px;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.text-pad-left {
    padding-left: 54px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.select-input {
    appearance: none;
    cursor: pointer;
}

.select-input option {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-light);
}

.textarea-input {
    resize: none;
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    max-width: 320px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.success-message {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

/* Location Map Column */
.map-container {
    height: 480px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(100%) contrast(110%);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: none;
    opacity: 1;
}

/* 10. FLOATING CTA BUTTONS */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-call {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-primary);
    border: 1px solid var(--color-gold);
}

.floating-call:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: scale(1.1);
}

.floating-whatsapp {
    background: #25d366;
    color: #FFFFFF;
    border: 1px solid #1ebd5d;
}

.floating-whatsapp:hover {
    background: #22c35e;
    transform: scale(1.1);
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--color-bg-tertiary);
    color: var(--color-text-light);
    border: 1px solid var(--color-glass-border);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* 11. LUXURY FOOTER */
.footer {
    background-color: #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-link-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-link:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-info-list i {
    margin-top: 3px;
}

.footer-contact-link:hover {
    color: var(--color-gold);
}

.footer-bottom {
    margin-top: 40px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* 12. SCROLL REVEAL INTERSECTION OBSERVER STYLING */
.reveal-fade, .reveal-fade-up, .reveal-fade-left, .reveal-fade-right {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-left {
    transform: translateX(-40px);
}

.reveal-fade-right {
    transform: translateX(40px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay classes */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* 13. RESPONSIVE BREAKPOINTS (MEDIA QUERIES) */

@media (max-width: 1200px) {
    .about-grid {
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    .contact-map-col {
        grid-column: span 2;
        margin-top: 20px;
    }
    .map-container {
        height: 380px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .owner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .owner-office-img {
        height: 380px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header toggle displays */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #0b0b0b;
        border-left: 1px solid var(--color-glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.8);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-col {
        grid-column: span 1;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        max-width: 320px;
        margin: 0 auto 35px auto;
    }
    
    .btn {
        width: 100%;
    }
    
    .testimonial-slider-container {
        padding: 40px 25px;
    }
    
    .slider-arrow {
        display: none; /* Hide arrows on mobile for swiping/indicator touch */
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .hero-feature-item {
        justify-content: flex-start;
    }
    
    .counter-number {
        font-size: 2.8rem;
    }
    
    .owner-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-col {
        padding: 30px 15px;
    }
    
    .floating-ctas {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}
