/* 
   AlpaClean Styling - style.css
   Modern, elegant, glassmorphic and fully responsive 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(210, 100%, 45%);         /* Professional Trustworthy Blue */
    --primary-hover: hsl(210, 100%, 38%);
    --primary-light: hsl(210, 100%, 96%);
    
    --secondary: #25d366;                  /* WhatsApp Green */
    --secondary-hover: #128c7e;
    
    --accent: hsl(152, 69%, 41%);          /* Mint Green for Cleanliness/Success */
    --accent-light: hsl(152, 69%, 95%);
    --gold: hsl(38, 92%, 50%);              /* Ratings and Highlights */
    
    --bg-primary: hsl(210, 40%, 98%);      /* Soft clean ice-white */
    --bg-secondary: #ffffff;                /* Pure White */
    --bg-dark: hsl(220, 30%, 12%);          /* Dark slate for footer & sections */
    
    --text-primary: hsl(220, 40%, 15%);     /* Dark Slate */
    --text-secondary: hsl(220, 15%, 45%);   /* Muted Gray */
    --text-light: #ffffff;
    
    --border: hsl(210, 30%, 92%);
    --border-hover: hsl(210, 30%, 85%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(0, 102, 204, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(0, 102, 204, 0.12);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 102, 204, 0.06);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions & Radii */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --container-width: 1200px;
}

/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

ul {
    list-style: none;
}

button, input, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.3rem 0;
    background: rgba(255, 255, 255, 0.95);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-right: 2rem;
}

.nav-logo-img {
    height: 3.2rem;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--accent);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

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

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

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 102, 204, 0.12);
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 8px 20px -5px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(0, 102, 204, 0.4);
}

.btn-whatsapp {
    background-color: var(--secondary);
    color: var(--text-light);
    box-shadow: 0 8px 20px -5px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -5px rgba(37, 211, 102, 0.4);
}

/* Pulsating Animation */
.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    transform: scale(1);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Hero Section with Custom Background image */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    background-image: url('assets/download_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 242, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge .star-icon {
    color: var(--gold);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Card for Logo in Hero */
.floating-logo-card {
    position: absolute;
    top: 5%;
    left: 0;
    transform: translateX(-40%);
    background: var(--bg-secondary);
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.floating-logo-img {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

.hero-main-img-wrapper {
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-secondary);
}

/* Section Header styling */
.section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-label {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* How We Work Section Cards */
.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.step-card {
    background-color: var(--bg-secondary);
    padding: 3rem 2.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.step-card:hover::after {
    width: 100%;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
}

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

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}



/* Comparison Table Styling (Matching the PDF) */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.services-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 750px;
}

.services-comparison-table th, 
.services-comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.services-comparison-table th {
    background-color: var(--primary-light);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
}

.services-comparison-table th.col-service {
    width: 45%;
}

.services-comparison-table th.col-pkg {
    width: 18.3%;
    text-align: center;
}

.pkg-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.services-comparison-table tbody tr {
    transition: var(--transition);
}

.services-comparison-table tbody tr:hover {
    background-color: hsl(210, 100%, 98%);
}

.services-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--text-primary);
}

.pkg-included {
    text-align: center;
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: bold;
}

.pkg-not-included {
    text-align: center;
    color: var(--text-secondary);
    opacity: 0.2;
}

.special-agreement {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--primary-light);
    font-size: 0.95rem;
}

.highlight-row {
    background-color: var(--primary-light);
}

.table-footnote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    line-height: 1.6;
}

.table-footnote strong {
    color: var(--text-primary);
}

/* Calculator Grid and Card layout */
.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.calc-card {
    background-color: var(--bg-secondary);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.calc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.calc-select-wrapper {
    position: relative;
    width: 100%;
}

.calc-select {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background-color: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
}

.calc-select:hover, .calc-select:focus {
    border-color: var(--primary);
    background-color: var(--bg-secondary);
}

.calc-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Range Slider */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.slider-val-box {
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.calc-range {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    outline: none;
    cursor: pointer;
    appearance: none;
}

.calc-range::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--primary-hover);
}

/* Results Display Box */
.calc-result-box {
    background: linear-gradient(135deg, hsl(210, 100%, 96%) 0%, hsl(152, 69%, 96%) 100%);
    border: 2px solid var(--accent-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.result-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.result-price {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 280px;
}

.calc-whatsapp-btn {
    width: 100%;
}

/* Map Layout and Design */
.map-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 750px;
    margin: 0 auto;
}

.map-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-secondary);
    transition: var(--transition);
    width: 100%;
}

.map-image-wrapper:hover {
    transform: scale(1.015);
    box-shadow: 0 25px 50px -15px rgba(0, 102, 204, 0.2);
}

.map-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.map-accent-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: center;
    max-width: 600px;
}

/* Reviews and Testimonials */
.rating-summary-card {
    background-color: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.rating-summary-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.rating-total {
    text-align: center;
    border-right: 1px solid var(--border);
    padding-right: 3rem;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.rating-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.breakdown-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.breakdown-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
}

.breakdown-bar-bg {
    height: 8px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.breakdown-bar {
    height: 100%;
    background-color: var(--gold);
    border-radius: var(--radius-full);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}

.author-avatar {
    width: 2.6rem;
    height: 2.6rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

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

.faq-item:hover, .faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding: 0 2rem 1.8rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2.5rem 0;
    border-top: 4px solid var(--accent);
}

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

.footer-logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 2.8rem;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-light);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-title {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-link {
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--text-light);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    color: var(--accent);
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-contact-item strong {
    color: var(--text-light);
}

.footer-contact-item a {
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--text-light);
}

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

.footer-copyright {
    font-size: 0.85rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.payment-icons-row {
    display: flex;
    gap: 0.6rem;
}

.payment-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Responsiveness / Mobile Adaptability */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .work-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .floating-logo-card {
        display: none;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .rating-summary-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-total {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Header menu mobile toggle */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 5rem);
        background-color: var(--bg-secondary);
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 0;
    }



    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.65rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .step-card h3 {
        font-size: 1.15rem;
    }

    /* Compact calculator */
    .calc-card {
        padding: 1.5rem;
    }

    .calc-result-box {
        padding: 1.5rem;
    }

    .result-price {
        font-size: 2.2rem;
    }

    /* Compact table */
    .services-comparison-table th,
    .services-comparison-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.78rem;
    }

    .services-comparison-table thead th {
        font-size: 0.75rem;
    }

    /* Compact reviews */
    .testimonial-card {
        padding: 1.5rem;
    }

    .rating-summary-card {
        padding: 1.5rem;
    }

    .rating-number {
        font-size: 2.8rem;
    }

    /* FAQ compact */
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.88rem;
    }

    /* Footer compact */
    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand-name {
        font-size: 1.4rem;
    }

    .map-centered {
        max-width: 100%;
    }

    .map-accent-text {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
}
