:root {
    /* Color Palette */
    --primary-bg: #f8fafc;
    --primary-text: #0f172a;
    --secondary-text: #64748b;
    --accent-blue: #0ea5e9;
    --accent-gold: #f59e0b;
    --accent-teal: #0d9488;
    --dark-bg: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(15, 23, 42, 0.85);
    --white: #ffffff;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --blue-gradient: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    --text-gradient: linear-gradient(135deg, #0ea5e9 0%, #0d9488 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--accent-blue);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-blue);
    opacity: 0.15;
    z-index: -1;
}

/* Grids */
.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.items-center {
    align-items: center;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
    background: var(--dark-bg);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.85));
    z-index: 1;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    /* Subtle zoom for parallax */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Trust Bar */
.stat-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    width: 32px;
    height: 32px;
}

/* Services */
.dark-bg {
    background-color: var(--dark-bg);
    color: var(--white);
}

.services-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 4rem;
}

.rounded-img {
    border-radius: 20px;
    width: 100%;
}

.service-image-container {
    position: relative;
    padding: 1rem;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    padding: 1rem 2rem;
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.5;
}

.detail-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.detail-content p {
    color: #94a3b8;
}

/* Warranty */
.glass-card {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid #f1f5f9;
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-gold);
}

.warranty-visual {
    display: flex;
    justify-content: center;
}

.shield-graphic {
    width: 250px;
    height: 250px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.3);
    position: relative;
}

.shield-graphic::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(245, 158, 11, 0.4);
    border-radius: 50%;
}

.year-text {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.sub-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer & Form */
.footer {
    background: #020617;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.glass-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.glass-form h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.full-width {
    width: 100%;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Human Touches & Story Section */
.badge-small {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-blue);
    display: inline-block;
    margin-bottom: 1rem;
}

.local-story .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.local-story p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 600px;
}

.mt-4 {
    margin-top: 1.5rem;
}

.accent-quote {
    padding: 3rem;
    background: #f1f5f9;
    border-radius: 24px;
    border-left: 8px solid var(--accent-blue);
    position: relative;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-text);
}

.accent-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent-blue);
    opacity: 0.1;
    font-family: serif;
}

.quote-author {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
    color: var(--secondary-text);
}

.form-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.form-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* Updated Responsive */
@media (max-width: 900px) {

    .footer-grid,
    .warranty-grid,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .accent-quote {
        margin-top: 3rem;
    }
}