/* ======================================
   Base Styles & Variables
====================================== */
:root {
    /* Colors - Black and Orange Theme */
    --primary: #FF8C00; /* Orange brand color */
    --primary-light: #FFA940;
    --primary-dark: #E67E00;
    --dark: #000000; /* Black background */
    --dark-light: #1a1a1a; /* Dark gray */
    --dark-lighter: #2a2a2a; /* Lighter dark gray for cards */
    --light: #FFFFFF; /* White text color */
    --light-dim: rgba(255, 255, 255, 0.9);
    --light-dimmer: rgba(255, 255, 255, 0.7);
    --light-dimmest: rgba(255, 255, 255, 0.5);
    --gray: #CCCCCC;
    --border: rgba(255, 255, 255, 0.1);
    --success: #4CAF50;
    --error: #F44336;
    --section-bg: #000000;
    --section-light-bg: #1a1a1a;
    --card-bg: #1a1a1a;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-highlight: 0 0 15px rgba(255, 140, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 0.5rem;  /* 8px */
    --space-sm: 1rem;    /* 16px */
    --space-md: 2rem;    /* 32px */
    --space-lg: 3rem;    /* 48px */
    --space-xl: 5rem;    /* 80px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-circle: 50%;
}

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

/* Base HTML Elements */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--light);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--light-dimmer);
}

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

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--space-sm);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ======================================
   Utility Classes
====================================== */
.text-center {
    text-align: center;
}

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

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

.section {
    padding: var(--space-xl) 0;
    background-color: var(--section-bg);
}

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

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

.separator {
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: var(--light-dimmest);
    margin: 0 var(--space-sm);
}

/* ======================================
   Section Headers
====================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--primary);
    vertical-align: middle;
    margin: 0 var(--space-xs);
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================================
   Buttons
====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background-color: var(--card-bg);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-light:hover {
    background-color: var(--dark-lighter);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-text {
    background-color: transparent;
    color: var(--primary);
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--transition-fast);
}

.btn-text:hover {
    color: var(--primary-light);
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.btn-text i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.btn-text:hover i {
    transform: translateX(4px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn + .btn {
    margin-left: var(--space-sm);
}

@media (max-width: 768px) {
    .btn + .btn {
        margin-left: 0;
        margin-top: var(--space-sm);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ======================================
   Top Bar
====================================== */
.top-bar {
    background-color: var(--primary);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: white;
}

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

.top-bar-contact {
    display: flex;
    align-items: center;
}

.top-bar-contact a {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-contact a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: white;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.top-bar-social a:hover {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ======================================
   Navigation
====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: padding var(--transition-fast);
    border-bottom: 1px solid var(--primary);
}

.navbar.scrolled {
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.logo a:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--light);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(-180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--dark-light);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
    list-style: none;
    margin: 0;
    border: 1px solid var(--border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--light);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background-color: rgba(255, 140, 0, 0.1);
    padding-left: 1.75rem;
}

.nav-cta {
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light);
    transition: all var(--transition-fast);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem var(--space-md) var(--space-md);
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
        gap: 0;
        overflow-y: auto;
        border-left: 1px solid var(--primary);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 0 var(--space-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
        border: none;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 0;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 0;
        background-color: transparent;
    }
    
    .nav-cta {
        margin: var(--space-md) 0 0;
        width: 100%;
    }
    
    .nav-cta a {
        width: 100%;
        text-align: center;
        border: none;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Mobile navbar adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Add padding to account for fixed navbar height */
    }
    
    /* Adjust the navbar height for mobile */
    .navbar {
        height: auto;
        min-height: 70px;
    }
    
    /* Remove top-bar padding since it's hidden on mobile */
    .hero {
        margin-top: 0;
    }
}

/* ======================================
   Hero Section
====================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: calc(var(--space-xl) + 100px) 0 var(--space-xl);
    overflow: hidden;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding: 0 var(--space-sm);
}

.hero h1 {
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        margin-top: 0; /* Remove margin on mobile */
    }
    
    .hero-content {
        padding-top: 2rem; /* Add top padding on mobile */
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
}

/* ======================================
   Services Section
====================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-content {
    padding: var(--space-md);
}

.service-card h3 {
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

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

.feature-list {
    list-style: none;
    margin: var(--space-sm) 0 var(--space-md);
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.875rem;
}

.services-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   Process Section
====================================== */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.3;
}

.process-step {
    position: relative;
    display: flex;
    margin-bottom: var(--space-md);
    padding-left: 80px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background-color: white;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    border: 2px solid var(--primary);
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.process-content {
    flex: 1;
    margin-left: var(--space-sm);
}

.process-content h3 {
    margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ======================================
   Gallery Section
====================================== */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.filter-btn {
    background-color: var(--dark-lighter);
    color: var(--light);
    border: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: left;
    transform: translateY(20px);
    transition: transform var(--transition-fast);
    width: 100%;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-circle);
    transition: all var(--transition-fast);
}

.gallery-link:hover {
    background-color: white;
    color: var(--primary);
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* ======================================
   Testimonials
====================================== */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-normal);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border: 1px solid var(--border);
    max-width: 800px;
    width: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--primary);
    font-size: 1rem;
}

blockquote {
    font-style: italic;
    color: var(--light);
    position: relative;
    padding-left: var(--space-sm);
    flex-grow: 1;
    margin: 0;
}

blockquote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 3rem;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.testimonial-info h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-info p {
    color: var(--light-dimmer);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.testimonial-prev,
.testimonial-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-lighter);
    color: var(--light);
    border-radius: var(--radius-circle);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    background-color: var(--dark-lighter);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active,
.dot:hover {
    background-color: var(--primary);
}

.testimonials-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .testimonial-slider {
        padding: 0 var(--space-sm);
    }
    
    .testimonial-card {
        padding: var(--space-sm);
    }
    
    blockquote::before {
        font-size: 2.5rem;
        top: -1rem;
    }
}

/* ======================================
   Benefits Section
====================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    height: 100%;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--dark-lighter);
    color: var(--primary);
    font-size: 2rem;
    border-radius: var(--radius-circle);
    margin: 0 auto var(--space-md);
    transition: all var(--transition-fast);
}

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

.benefit-card h3 {
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

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

.about-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* ======================================
   Service Areas
====================================== */
.service-areas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.service-areas-map {
    max-width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-areas-map img {
    width: 100%;
    height: auto;
    display: block;
}

.service-areas-towns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.town-tag {
    background-color: var(--card-bg);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.town-tag:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

/* ======================================
   FAQ Section
====================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-md);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
    color: var(--light);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-item:hover .faq-question h3 {
    color: var(--primary);
}

/* ======================================
   Contact Info Section
====================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-info-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    height: 100%;
    border: 1px solid var(--border);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--dark-lighter);
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: var(--radius-circle);
    margin: 0 auto var(--space-sm);
    transition: all var(--transition-fast);
}

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

.contact-info-card h3 {
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

.contact-info-card:hover h3 {
    color: var(--primary);
}

.contact-info-card p {
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--light-dimmer);
    transition: color var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--primary);
}

.map-container {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.social-connect {
    text-align: center;
    margin-top: var(--space-lg);
}

.social-connect h3 {
    margin-bottom: var(--space-sm);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--card-bg);
    color: var(--primary);
    border-radius: var(--radius-circle);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   CTA Banner
====================================== */
.cta-banner {
    background-color: var(--primary);
    padding: var(--space-md) 0;
}

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

.cta-content {
    max-width: 60%;
}

.cta-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cta-banner .btn-outline {
    background-color: white;
    color: var(--primary);
    border: 2px solid white;
}

.cta-banner .btn-outline:hover {
    background-color: var(--dark);
    color: white;
    border-color: var(--dark);
}

@media (max-width: 768px) {
    .cta-banner .container {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ======================================
   Footer
====================================== */
.footer {
    background-color: var(--dark);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    margin-bottom: var(--space-sm);
}

.license-number {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--card-bg);
    color: var(--light);
    border-radius: var(--radius-circle);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: white;
}

.footer-links h4 {
    color: var(--light);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-dimmer);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-contact h4 {
    color: var(--light);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.footer-contact ul {
    list-style: none;
    margin-bottom: var(--space-sm);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--light-dimmer);
}

.footer-contact li i {
    color: var(--primary);
    min-width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-dimmest);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-sm);
    list-style: none;
    margin: 0;
}

.footer-bottom-links a {
    color: var(--light-dimmest);
}

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

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ======================================
   WhatsApp Button
====================================== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 999; /* Above most content */
    font-size: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Make sure buttons don't overlap on smaller screens */
@media (max-width: 480px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 26px;
        right: 15px;
        bottom: 15px;
    }
}

/* ======================================
   Animations & Transitions
====================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
