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

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --bg-dark: #070707;
    --bg-dark-gray: #111111;
    --bg-glass: rgba(18, 18, 18, 0.65);
    --bg-glass-hover: rgba(30, 30, 30, 0.85);
    --border-glass: rgba(212, 175, 55, 0.12);
    --border-glass-hover: rgba(212, 175, 55, 0.3);
    
    --gold-primary: #d4af37;
    --gold-secondary: #ffdf7a;
    --gold-dark: #aa8416;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa8416 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
    --gold-glow-intense: 0 0 25px rgba(212, 175, 55, 0.5);
    
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #070707;
    
    /* Typography */
    --font-brand: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Animations & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-brand);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

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

.gold-text {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-intense);
    color: var(--text-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}
.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

/* ==========================================
   GLASSMORPHISM UTILITIES
   ========================================== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
}

.navbar-scrolled {
    background: rgba(7, 7, 7, 0.9);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: var(--font-brand);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.2;
}

.logo-tagline {
    display: block;
    font-size: 0.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-gray);
}

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

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

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

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO BANNER SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle, rgba(7, 7, 7, 0.4) 0%, rgba(7, 7, 7, 0.9) 100%), 
                url('../images/hero_bg.png') no-repeat center center/cover;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,7,0.8) 0%, rgba(7,7,7,0.3) 50%, rgba(7,7,7,0.9) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    margin-top: 50px;
}

.hero-tag {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

/* ==========================================
   SECTIONS GENERAL
   ========================================== */
section {
    padding: 7rem 2rem;
    position: relative;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-glass);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.about-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0) 50%);
}

.about-img-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    font-family: var(--font-brand);
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.about-owner {
    border-color: var(--gold-primary);
}

.owner-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.owner-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.owner-info h4 {
    margin-bottom: 0.2rem;
}

.owner-info span {
    font-size: 0.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1rem;
}

.about-feature-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    line-height: 1;
}

.about-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.about-feature-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.service-tab-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.service-tab-btn:hover, .service-tab-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-requirements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-requirements h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.service-requirements ul {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.service-requirements li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.25rem;
}

.service-requirements li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
}

/* ==========================================
   BRANDS SECTION
   ========================================== */
.brands-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.brands-slider-container::before, .brands-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(7,7,7,0) 100%);
}

.brands-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, rgba(7,7,7,0) 100%);
}

.brands-track {
    display: flex;
    gap: 5rem;
    width: calc(240px * 18);
    animation: scrollBrands 35s linear infinite;
}

.brand-logo-card {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.brand-logo-card:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: var(--gold-glow);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 9 - 5rem * 9));
    }
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 7, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 1.5rem;
    text-align: center;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 0;
}

.gallery-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

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

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

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

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

.why-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* ==========================================
   CUSTOMER REVIEWS (TESTIMONIALS)
   ========================================== */
.reviews-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.review-card {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.08);
    position: absolute;
    top: 15px;
    left: 20px;
    line-height: 1;
}

.review-rating {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.review-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.review-author-info {
    text-align: left;
}

.review-author-info h4 {
    margin-bottom: 0.1rem;
    font-size: 1rem;
    font-family: var(--font-body);
}

.review-author-info span {
    font-size: 0.8rem;
    color: var(--gold-primary);
}

.review-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-ctrl-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.review-ctrl-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

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

.review-dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    background: var(--bg-glass);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 2rem;
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--border-glass-hover);
    background: var(--bg-glass-hover);
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card-item {
    display: flex;
    gap: 1.25rem;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-card-details p, .contact-card-details a {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-card-details a:hover {
    color: var(--gold-primary);
}

.map-container {
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.contact-form-column form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.85rem 1.2rem;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #030303;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

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

.footer-social-link:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.footer-column h3 {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
}

.footer-contact-list i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.float-whatsapp {
    background-color: #25d366;
}
.float-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.float-call {
    background: var(--gold-gradient);
    color: var(--text-dark);
}
.float-call:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.float-top {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

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

.float-top:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: scale(1.1) translateY(-3px);
}

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

/* Scroll Reveal classes managed by JS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet & Smaller Layouts */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 5rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .navbar-container {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(7, 7, 7, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(212, 175, 55, 0.08);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hamburger Active State */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .hero {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-column form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
}

/* Micro devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}
