/* SPINFOSYS Rental Website Stylesheet */
/* Built with a premium, high-converting Google Ads design system */

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

:root {
    /* Color Palette */
    --primary: hsl(221, 83%, 53%);      /* Royal Blue */
    --primary-hover: hsl(221, 83%, 45%);
    --secondary: hsl(206, 100%, 50%);  /* Electric Cyan */
    --accent: #10b981;                  /* Safe emerald green for Success/Callout */
    --accent-hover: #059669;
    
    /* Neutral Shades */
    --bg-main: hsl(210, 40%, 98%);
    --bg-card: hsl(0, 0%, 100%);
    --bg-dark: hsl(222, 47%, 11%);       /* Deep Space Navy */
    --bg-dark-accent: hsl(223, 47%, 16%);
    
    /* Text Colors */
    --text-main: hsl(222, 47%, 15%);
    --text-muted: hsl(215, 16%, 45%);
    --text-light: hsl(210, 40%, 98%);
    --text-white: #ffffff;
    
    /* Borders and Shadows */
    --border-color: hsl(214, 32%, 91%);
    --border-dark: hsl(223, 20%, 25%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.05), 0 3px 10px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.08), 0 15px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.15);
    
    /* Layout Tokens */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1280px;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--bg-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Layout Components */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h2 {
    color: var(--text-white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-dark .section-header p {
    color: hsl(215, 16%, 70%);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.top-bar {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 8px 0;
    font-weight: 500;
}

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

.top-bar-info {
    display: flex;
    gap: 24px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social a {
    color: hsl(215, 16%, 75%);
}

.top-bar-social a:hover {
    color: var(--text-white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

/* Logo Brand */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
    border: none;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Hamburger Menu (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--bg-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 60px 0 100px 0;
    background: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Hero Graphic & Image Frames */
.hero-graphic {
    position: relative;
}

.image-frame {
    background-color: #ffffff;
    border: 8px solid #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.floating-badge-1 {
    top: 15%;
    left: -40px;
}

.floating-badge-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

.floating-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.floating-badge-text p:first-child {
    font-weight: 700;
    color: var(--bg-dark);
    font-size: 0.9rem;
    margin: 0;
}

.floating-badge-text p:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

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

/* Lead Form Card (Above the Fold) */
.form-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    border: 1px solid var(--border-color);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

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

/* Trust Ticker (Client logos or Service Cities) */
.ticker-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
    width: max-content;
}

.ticker-wrapper:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(215, 16%, 70%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item::before {
    content: '✦';
    color: var(--secondary);
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Service Category Cards (Home Page) */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background-color: var(--primary);
    color: var(--text-white);
}

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

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.card-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.card-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.card-link:hover {
    color: var(--primary-hover);
}

/* Feature Grid (Why Choose Us) */
.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Product Catalog Grid (Landing Pages) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

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

.spec-info strong {
    display: block;
    color: var(--text-main);
    font-size: 0.85rem;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.price-val span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Tab Filtering (For Laptop/Desktop selectors) */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* Pricing Estimator Tool */
.estimator-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.estimator-body {
    padding: 40px;
}

.estimator-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.estimator-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.estimator-option-group h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

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

.option-btn {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.option-btn.active {
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
    color: var(--primary);
}

.estimator-summary {
    background-color: hsl(210, 40%, 96%);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.estimator-summary-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.estimator-price-display {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1;
}

.estimator-price-display span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color: var(--bg-dark);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-md);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 20px;
    transition: max-height 0.5s ease-in-out;
}

/* Testimonial Carousel */
.testimonial-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 320px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-quote {
    font-size: 1.35rem;
    font-style: italic;
    margin-bottom: 24px;
    color: hsl(210, 40%, 90%);
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -20px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.testimonial-client {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
}

.testimonial-company {
    font-size: 0.85rem;
    color: hsl(215, 16%, 65%);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

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

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Contact Details Page / Section */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-info-details p, .contact-info-details a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.map-container {
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    background-color: #f1f5f9;
}

.mock-map {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #cbd5e1 0%, #e2e8f0 70%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-map-marker {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border: 3px solid #ffffff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: markerPulse 1.5s infinite;
}

@keyframes markerPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.mock-map-label {
    position: absolute;
    top: calc(50% - 60px);
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.mock-map-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: calc(50% - 6px);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--bg-dark) transparent;
    display: block;
    width: 0;
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: hsl(215, 16%, 75%);
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--border-dark);
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: hsl(215, 16%, 70%);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a:hover {
    color: var(--text-white);
}

/* Thank You and Policy Pages styling */
.info-page-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.info-page-content h2 {
    font-size: 1.75rem;
    margin-top: 30px;
    margin-bottom: 16px;
}

.info-page-content h2:first-of-type {
    margin-top: 0;
}

.info-page-content p {
    margin-bottom: 20px;
    color: var(--text-main);
}

.info-page-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.info-page-content li {
    margin-bottom: 8px;
}

.thank-you-card {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 40px auto;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px auto;
}

.thank-you-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thank-you-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .estimator-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 93px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 93px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on mobile to prevent overlapping */
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-container {
        flex-wrap: wrap;
    }
    
    .info-page-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
