/* ==========================================
   GT Craft Luxury Stylesheet
   Theme: Gold & Black Premium Cyber-Aesthetic
   ========================================== */

/* Custom Reset & Variables */
:root {
    --color-bg-dark: #0A0A0A;
    --color-bg-card: rgba(26, 26, 26, 0.5);
    --color-bg-card-hover: rgba(36, 36, 36, 0.7);
    --color-gold: #D4AF37;
    --color-gold-light: #F3E7C4;
    --color-gold-dark: #AA8C2C;
    --color-white: #FFFFFF;
    --color-muted: #8A8A8A;
    --color-border-glass: rgba(212, 175, 55, 0.15);
    --color-border-hover: rgba(212, 175, 55, 0.4);
    --color-green: #2ecc71;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    --shadow-gold-glow-large: 0 0 50px rgba(212, 175, 55, 0.45);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Selection highlight */
::selection {
    background: var(--color-gold-dark);
    color: var(--color-white);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

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

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

.hidden {
    display: none !important;
}

/* Custom Text Gradients */
.gold-text {
    color: var(--color-gold);
}

.gradient-gold-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 55%, #F3E7C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-slow);
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: logo-glow 2s infinite ease-in-out alternate;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold);
    animation: loading-bar 2.5s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

.preloader-tagline {
    font-size: 0.9rem;
    color: var(--color-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Background Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    outline: none;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    box-shadow: var(--shadow-gold-glow-large);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-white);
    border: 1px solid var(--color-border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Header & Sticky Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.header.sticky {
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid var(--color-border-glass);
    backdrop-filter: blur(16px);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-badge {
    font-size: 0.65rem;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.5rem;
}

/* Sections Base Header */
.section-header {
    margin-bottom: 70px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-glass);
    color: var(--color-gold-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--color-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-bg {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.hero-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floating 6s ease-in-out infinite;
}

/* Floating badges on Hero */
.floating-badge {
    position: absolute;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid var(--color-border-glass);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    box-shadow: var(--shadow-card);
}

.floating-badge i {
    color: var(--color-gold);
    width: 24px;
    height: 24px;
}

.floating-badge h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.badge-1 {
    top: 20%;
    left: -5%;
    animation: floating 5s ease-in-out infinite 0.5s;
}

.badge-2 {
    bottom: 20%;
    right: -5%;
    animation: floating 7s ease-in-out infinite 1s;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    background-color: var(--color-bg-card-hover);
    box-shadow: var(--shadow-gold-glow);
}

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

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 30px;
    transition: all var(--transition-normal);
}

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

.service-icon-box i {
    width: 28px;
    height: 28px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-text {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.service-features li i {
    color: var(--color-gold);
    width: 16px;
    height: 16px;
}

/* Why Choose Section Layout */
.grid-why {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.why-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-fast);
}

.benefit-item:hover .benefit-icon {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold-glow);
}

.benefit-icon i {
    width: 20px;
    height: 20px;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.4;
}

/* Interactive Preview Box */
.interactive-preview-box {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.preview-header {
    background: #181818;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dot.red { background: #ff5f56; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green { background: #27c93f; }

.preview-title {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--color-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.preview-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.metric-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.metric-badge.green {
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-green);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.metric-circle-box {
    margin-bottom: 30px;
}

/* Circular Progress Bar */
.circular-progress {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--color-gold) 0deg, #181818 0deg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    animation: conic-spin 2s ease-out forwards;
}

.circular-progress::after {
    content: '';
    position: absolute;
    width: 126px;
    height: 126px;
    background: #121212;
    border-radius: 50%;
}

.percent-value {
    position: relative;
    z-index: 5;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.percent-label {
    position: absolute;
    bottom: 30px;
    z-index: 5;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
}

.console-box {
    width: 100%;
    background: #080808;
    border-radius: 8px;
    padding: 16px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.console-line {
    margin-bottom: 6px;
}

.console-line:last-child {
    margin-bottom: 0;
}

.c-gold { color: var(--color-gold); }
.c-green { color: var(--color-green); }


/* Pricing Grid */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.toggle-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-muted);
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--color-white);
}

.discount-badge {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
    margin-left: 4px;
}

.toggle-btn {
    width: 60px;
    height: 30px;
    border-radius: 50px;
    background: #1A1A1A;
    border: 1px solid var(--color-border-glass);
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-gold);
    transition: left var(--transition-fast);
    box-shadow: var(--shadow-gold-glow);
}

.toggle-btn.yearly .toggle-slider {
    left: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-gold-glow);
}

/* Featured Badge */
.pricing-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold-glow);
    background: rgba(30, 26, 20, 0.4);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.plan-header {
    margin-bottom: 30px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-right: 4px;
}

.plan-price .price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .price-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-gold);
}

.plan-price .period {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-left: 4px;
}

.plan-desc {
    color: var(--color-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.plan-features li i {
    color: var(--color-gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.plan-features li.disabled {
    color: var(--color-muted);
    opacity: 0.5;
}

.plan-features li.disabled i {
    color: var(--color-muted);
}

.plan-footer {
    margin-top: auto;
}

/* Testimonials Carousel */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    min-width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 50px 60px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: var(--color-gold);
    fill: var(--color-gold);
    width: 18px;
    height: 18px;
}

.testimonial-comment {
    font-size: 1.25rem;
    font-style: italic;
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 32px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: left;
}

.profile-title {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: left;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.control-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-gold-glow);
}

/* Contact Grid */
.grid-contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.contact-detail-card:hover {
    border-color: var(--color-border-hover);
    background: rgba(212, 175, 55, 0.05);
}

.contact-detail-card i {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-detail-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-detail-card a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

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

/* Leaflet Map Styling */
.map-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--color-gold);
}

#contact-map {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    border: 1px solid var(--color-border-glass);
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map filter hack */
    z-index: 5;
}

/* Project Form Estimator */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
}

.quote-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.quote-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.quote-header p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.group-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-white);
}

.services-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Custom Checkbox Design */
.checkbox-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
    user-select: none;
}

.checkbox-card input {
    display: none;
}

.checkbox-visual {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-muted);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.checkbox-card input:checked ~ .checkbox-visual {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.checkbox-card input:checked ~ .checkbox-visual::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--color-bg-dark);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: color var(--transition-fast);
}

.checkbox-card input:checked ~ .checkbox-label {
    color: var(--color-white);
}

.checkbox-card:hover {
    border-color: var(--color-border-hover);
    background: rgba(212, 175, 55, 0.05);
}

/* Custom Radio Design */
.timeline-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
}

.radio-card input {
    display: none;
}

.radio-visual {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-muted);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.radio-card input:checked ~ .radio-visual {
    border-color: var(--color-gold);
}

.radio-card input:checked ~ .radio-visual::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.radio-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: color var(--transition-fast);
}

.radio-card input:checked ~ .radio-label {
    color: var(--color-white);
}

.radio-card:hover {
    border-color: var(--color-border-hover);
    background: rgba(212, 175, 55, 0.05);
}

/* Live Cost Showcase */
.live-quote-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--color-border-glass);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.03);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-muted);
}

.quote-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

/* Inputs styling */
.project-form input,
.project-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-fast);
}

.project-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.project-form input:focus,
.project-form textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-success-message {
    display: none;
    align-items: flex-start;
    gap: 16px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    color: var(--color-white);
}

.form-success-message.active {
    display: flex;
}

.form-success-message i {
    color: var(--color-green);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-success-message h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}

.form-success-message p {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Footer styling */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--color-muted);
    font-size: 0.85rem;
    max-width: 300px;
    line-height: 1.5;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul a {
    color: var(--color-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-socials a i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 0.8rem;
}

/* Custom Floating Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-family: var(--font-body);
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff5f56;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-dark);
}

.chatbot-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    border: none;
    cursor: pointer;
    color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all var(--transition-normal);
    outline: none;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.chatbot-toggle-btn i {
    width: 26px;
    height: 26px;
    stroke-width: 2px;
}

.chatbot-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 360px;
    height: 480px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all var(--transition-normal);
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-header {
    background: #141414;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    position: relative;
}

.chatbot-avatar i {
    width: 20px;
    height: 20px;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--color-green);
    border: 2px solid #141414;
    border-radius: 50%;
}

.chatbot-header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.chatbot-header p {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.chatbot-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.chat-msg.bot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e0e0e0;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-msg.user {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-weight: 500;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: var(--shadow-gold-glow);
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.reply-btn {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-border-glass);
    color: var(--color-gold-light);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reply-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
}

.chatbot-footer {
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    display: flex;
    gap: 8px;
}

.chatbot-footer input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--color-white);
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-body);
}

.chatbot-footer input:focus {
    border-color: var(--color-gold);
}

.chatbot-footer button {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--color-gold);
    border: none;
    color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.chatbot-footer button:hover {
    background: var(--color-gold-light);
}

.chatbot-footer button i {
    width: 16px;
    height: 16px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    z-index: 998;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128c7e;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Keyframe Animations */
@keyframes logo-glow {
    0% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
    100% {
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }
}

@keyframes loading-bar {
    0% { width: 0%; }
    20% { width: 25%; }
    50% { width: 60%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll reveal animations (applied via JS) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Hamburg menu drawer for small viewport screens */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        border-left: 1px solid var(--color-border-glass);
        backdrop-filter: blur(16px);
        transition: right var(--transition-normal);
        padding: 40px;
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .grid-why {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .why-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-comment {
        font-size: 1.05rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .services-selector-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .chatbot-window {
        width: 320px;
        height: 420px;
        right: -10px;
    }
}
