/* ============================================
   PROPERTY CARE — LUXURY LANDING PAGE STYLES
   ============================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
    --navy: #F7F9FC;
    --navy-deep: #FFFFFF;
    --navy-light: #EBF0F5;
    --gold: #D4AF37;
    --gold-light: #F1D279;
    --gold-dark: #B8941E;
    --white: #111827;
    --white-pure: #000000;
    --gray: #4B5563;
    --gray-light: #6B7280;
    --gray-dark: #374151;
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.08);
    --card-border-hover: rgba(212, 175, 55, 0.4);
    --backdrop: rgba(255, 255, 255, 0.85);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --transition-base: 0.3s var(--ease-out-quart);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-reveal: 1s var(--ease-out-expo);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--gray);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

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

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo span {
    color: var(--gold);
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: var(--navy-light);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: preloaderFill 1.8s var(--ease-out-expo) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
}

.cursor-dot.hover, .cursor-ring.hover {
    transform: scale(2);
}

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

.section-padding {
    padding: 90px 0;
    scroll-margin-top: 70px;
}

.center { text-align: center; }
.gold { color: var(--gold); }
.gold-italic { color: var(--gold); font-style: italic; }
.full-width { width: 100%; }

/* --- Section Labels & Headings --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.center .section-label {
    padding-left: 0;
}

.center .section-label::before {
    display: none;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    font-weight: 600;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
}

.btn-gold span, .btn-gold svg {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    color: var(--white);
}

.btn-large {
    padding: 18px 44px;
    font-size: 0.95rem;
}

/* === HEADER === */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--transition-base);
}

#main-header.scrolled {
    background: var(--backdrop);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--card-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    gap: 8px;
}

.logo-property { color: var(--white); }
.logo-care { color: var(--gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-light);
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 6px;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.4s; }

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    transition: color var(--transition-base);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* === HERO === */
#hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background: url('hero.png') center/cover no-repeat;
    will-change: transform;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.5) 100%
    );
}

/* Hero Particles Canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Animated Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat1 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #1a6bff, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: orbFloat2 10s ease-in-out infinite alternate;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold-light), transparent 70%);
    top: 40%;
    right: 20%;
    animation: orbFloat3 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 60px) scale(1.2); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.15); }
}

@keyframes orbFloat3 {
    0% { transform: translate(0, 0) scale(0.9); }
    100% { transform: translate(-30px, 40px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* === MARQUEE STRIP === */
.marquee-strip {
    padding: 20px 0;
    background: var(--navy);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 0.6rem !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === ABOUT / VALUE PROP === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.large-text {
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
}

.stat-text {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-top: 6px;
}

/* === SERVICES === */
.dark-section {
    background: var(--navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.service-card {
    background: var(--navy-deep);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

/* 3D Tilt Card System */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.tilt-card .service-body {
    transform: translateZ(30px);
}

.tilt-card .service-number {
    transform: translateZ(60px);
}

/* Glow border on hover */
.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 0.6;
}

.service-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.08);
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy-deep) 0%, transparent 50%);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.service-body {
    padding: 28px;
}

.service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-body p {
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--gray-light);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* Extra Services */
.extra-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.extra-service {
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.extra-service:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-6px);
    background: rgba(17, 34, 64, 0.4);
}

.extra-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    margin-bottom: 16px;
}

.extra-service h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.extra-service p {
    font-size: 0.83rem;
    color: var(--gray);
}

/* === PROCESS === */
.process-cards {
    max-width: 800px;
    margin: 60px auto 0;
}

.process-card {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.process-card + .process-card {
    border-top: 1px solid var(--card-border);
}

.process-num-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.process-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    width: 60px;
    text-align: center;
}

.process-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-top: 12px;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.process-content p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* === WHY US === */
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.trust-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.trust-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* Testimonial */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.8;
    opacity: 0.3;
    position: absolute;
    top: 24px;
    left: 32px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* === CTA BANNER === */
.cta-banner-section {
    padding: 0;
    position: relative;
}

.cta-banner {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: -70px 0;
    z-index: 2;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 32px;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.channel:hover {
    border-color: var(--card-border-hover);
    background: rgba(255, 255, 255, 1);
    transform: translateX(6px);
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.whatsapp-icon { background: rgba(37, 211, 102, 0.1) !important; color: #25D366 !important; }
.instagram-icon { background: rgba(225, 48, 108, 0.1) !important; color: #E1306C !important; }
.linkedin-icon { background: rgba(0, 119, 181, 0.1) !important; color: #0077B5 !important; }

.channel-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.channel-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

/* Form */
.quote-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 44px;
    backdrop-filter: blur(10px);
}

.quote-form h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-base), background var(--transition-base);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: center;
    margin-top: 14px;
}

/* === FOOTER === */
#footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--card-border);
    padding-top: 80px;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--gray);
    padding: 5px 0;
    transition: color var(--transition-base);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--card-border);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray);
    transition: color var(--transition-base);
}

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

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.floating-whatsapp.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* === SCROLL ANIMATIONS (Handled by GSAP) === */
.anim-fade-up { opacity: 0; }
.anim-title-line span { display: inline-block; transform: translateY(110%); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .extra-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .services-grid,
    .extra-services {
        grid-template-columns: 1fr;
    }
    
    .process-card {
        gap: 24px;
    }
    
    .form-row { grid-template-columns: 1fr; }
    
    .quote-form { padding: 28px 22px; }
    
    .cta-banner {
        padding: 50px 28px;
        margin: -40px 16px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .scroll-indicator { display: none; }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
    
    .stat-number { font-size: 2rem; }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .hero-orb { display: none; }
}

/* === 3D & INTERACTIVE ENHANCEMENTS === */

/* Magnetic Button */
.magnetic {
    transition: transform 0.3s var(--ease-spring);
}

/* Extra Service 3D Hover */
.extra-service {
    transform-style: preserve-3d;
    perspective: 800px;
}

.extra-service:hover .extra-icon {
    transform: translateZ(20px) rotateY(10deg);
    transition: transform 0.4s var(--ease-spring);
}

/* Glowing card underlines */
.service-body h3 {
    position: relative;
    display: inline-block;
}

.service-body h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.6s var(--ease-out-expo);
}

.service-card:hover .service-body h3::after {
    width: 100%;
}

/* Trust icon 3D rotate on hover */
.trust-icon {
    transition: all 0.4s var(--ease-spring);
    transform-style: preserve-3d;
}

.trust-item:hover .trust-icon {
    transform: rotateY(180deg);
    background: rgba(212, 175, 55, 0.15);
}

/* Process step number glow */
.process-num {
    transition: all 0.5s ease;
}

.process-card:hover .process-num {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.1);
}

/* Testimonial card floating effect */
.testimonial-card {
    animation: testimonialFloat 6s ease-in-out infinite;
}

@keyframes testimonialFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* CTA Banner glow animation */
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Form input focus glow */
.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* Floating WhatsApp 3D hover */
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05) rotateZ(-5deg);
}

/* Channel cards shine effect */
.channel::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
    transition: left 0.6s ease;
}

.channel {
    position: relative;
    overflow: hidden;
}

.channel:hover::after {
    left: 100%;
}

/* Stat counter glow */
.stat-number {
    transition: text-shadow 0.5s ease;
}

.about-stat:hover .stat-number {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Section divider animation */
.dark-section {
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
}

/* === LENIS REQUIRED CSS === */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important; /* Lenis takes over */
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
