/* CSS Variables based on design.json */
:root {
    /* Colors */
    --primary-main: #007bff;
    --primary-light: #66b3ff;
    --primary-dark: #0056b3;
    --primary-text: #ffffff;
    --secondary-main: #6c757d;
    --secondary-light: #adb5bd;
    --secondary-dark: #495057;
    --accent-main: #17a2b8;
    --accent-light: #58c4d4;
    --accent-dark: #117a8b;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #1a1e21;
    --black: #000000;

    /* Semantic Colors */
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;

    /* Typography */
    --font-primary: Georgia, 'Times New Roman', serif;
    --font-headings: 'Lato', Helvetica, Arial, sans-serif;
    --font-body: Georgia, 'Times New Roman', serif;
    --font-code: Monaco, Consolas, 'Courier New', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.8;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Borders */
    --border-radius-sm: 0.125rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    --shadow-xl: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);

    /* Container */
    --container-max-width: 1200px;
    --container-padding: 15px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--line-height-normal);
    color: var(--gray-700);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: var(--font-bold);
    line-height: var(--line-height-tight);
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
    line-height: var(--line-height-relaxed);
}

a {
    color: var(--primary-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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

.navbar-brand h2 {
    color: var(--primary-main);
    font-family: var(--font-headings);
    font-weight: var(--font-extrabold);
    margin-bottom: 0;
}

.navbar-nav .nav-link {
    font-family: var(--font-headings);
    font-weight: var(--font-medium);
    color: var(--gray-600);
    padding: var(--space-sm) var(--space-xl) !important;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-main);
    background-color: var(--light-gray);
    border-radius: var(--border-radius-md);
}

/* Large device navigation spacing */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: var(--space-sm) var(--space-xl) !important;
    }
}

/* Hero Section */
.hero-section {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(23, 162, 184, 0.8) 100%),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
    line-height: var(--line-height-relaxed);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn {
    padding: var(--space-md) var(--space-2xl);
    font-weight: var(--font-semibold);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-main);
    border-color: var(--primary-main);
    color: var(--primary-text);
}

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

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

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

/* Section Styling */
.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

/* Services Overview */
.services-overview {
    padding: var(--space-4xl) 0;
}

.service-card {
    text-align: center;
    padding: var(--space-2xl);
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.service-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.service-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
}

/* Featured Products */
.featured-products {
    padding: var(--space-4xl) 0;
    background-color: var(--light-gray);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

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

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

.product-content {
    padding: var(--space-lg);
}

.product-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.product-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--space-4xl) 0;
}

.features-list {
    margin-top: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
}

.feature-item i {
    font-size: var(--text-xl);
    margin-right: var(--space-md);
    margin-top: var(--space-xs);
}

.feature-item h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
}

.feature-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.image-wrapper img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    padding: var(--space-4xl) 0;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
}

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

/* Footer */
.footer {
    background-color: var(--gray-800);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-title {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-lg);
}

.footer-description {
    color: var(--gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gray-700);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-main);
    color: var(--white);
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

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

.contact-info {
    margin-top: var(--space-sm);
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-light);
    margin-right: var(--space-sm);
    margin-top: var(--space-xs);
    width: 18px;
    flex-shrink: 0;
}

.contact-item span {
    color: var(--gray-400);
    line-height: var(--line-height-normal);
}

.footer-divider {
    border-color: var(--gray-700);
    margin: var(--space-2xl) 0 var(--space-lg);
}

.footer-copyright {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .service-card {
        margin-bottom: var(--space-lg);
    }

    .feature-item {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
        background-attachment: scroll;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-xl);
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--space-md);
    }

    .hero-image {
        margin-top: var(--space-2xl);
    }

    .services-overview,
    .featured-products,
    .why-choose-us,
    .cta-section {
        padding: var(--space-2xl) 0;
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .cta-title {
        font-size: var(--text-3xl);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: var(--text-2xl);
    }

    .section-title {
        font-size: var(--text-xl);
    }

    .cta-title {
        font-size: var(--text-2xl);
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: var(--text-xl);
    }
}

/* About Page Specific Styles */
.page-header {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.company-overview {
    padding: var(--space-4xl) 0;
}

.mission-vision {
    padding: var(--space-4xl) 0;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-card .icon-wrapper,
.vision-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.mission-card .icon-wrapper i,
.vision-card .icon-wrapper i {
    font-size: var(--text-xl);
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.values {
    padding: var(--space-4xl) 0;
}

.value-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-main), var(--primary-light));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.value-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.team {
    padding: var(--space-4xl) 0;
}

.expertise-card {
    text-align: center;
    padding: var(--space-2xl);
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success), var(--accent-light));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.expertise-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.expertise-card h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.expertise-card p {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.company-stats {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

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

.stat-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--primary-main);
    font-family: var(--font-headings);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--gray-700);
    font-family: var(--font-headings);
}

.cta-buttons .btn {
    padding: var(--space-md) var(--space-2xl);
    font-weight: var(--font-semibold);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

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

/* Products Page Specific Styles */
.product-categories {
    padding: var(--space-4xl) 0;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

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

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.category-overlay i {
    font-size: var(--text-xl);
    color: var(--white);
}

.category-content {
    padding: var(--space-xl);
}

.category-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.category-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.feature-tag {
    background-color: var(--light-gray);
    color: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.product-section {
    padding: var(--space-4xl) 0;
}

.product-card-detailed {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card-detailed .product-image {
    height: 200px;
    overflow: hidden;
}

.product-card-detailed .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card-detailed .product-content {
    padding: var(--space-lg);
}

.product-card-detailed .product-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.product-card-detailed .product-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: var(--space-xs) 0;
    color: var(--gray-600);
    font-size: var(--text-sm);
    position: relative;
    padding-left: var(--space-lg);
}

.product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: var(--space-xs);
    color: var(--success);
    font-size: var(--text-xs);
}

.product-benefits {
    padding: var(--space-4xl) 0;
}

.benefit-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.benefit-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.benefit-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.benefit-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
    font-size: var(--text-sm);
}

/* Services Page Specific Styles */
.services-intro {
    padding: var(--space-4xl) 0;
}

.service-highlights {
    margin-top: var(--space-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.highlight-item i {
    margin-right: var(--space-md);
    font-size: var(--text-lg);
}

.highlight-item span {
    color: var(--gray-700);
    font-weight: var(--font-medium);
}

.main-services {
    padding: var(--space-4xl) 0;
}

.service-card-detailed {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.service-icon-wrapper i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.service-card-detailed .service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.service-card-detailed .service-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.service-card-detailed .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card-detailed .service-features li {
    padding: var(--space-xs) 0;
    color: var(--gray-600);
    font-size: var(--text-sm);
    position: relative;
    padding-left: var(--space-lg);
}

.service-card-detailed .service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: var(--space-xs);
    color: var(--success);
    font-size: var(--text-xs);
}

.service-process {
    padding: var(--space-4xl) 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: var(--space-xl) var(--space-md);
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-2xl) auto var(--space-lg);
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: var(--text-2xl);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--accent-main), var(--primary-light));
    transform: scale(1.1);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.step-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.service-areas {
    padding: var(--space-4xl) 0;
}

.areas-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.coverage-areas {
    margin-top: var(--space-xl);
}

.area-group {
    margin-bottom: var(--space-xl);
}

.area-group h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--primary-main);
    margin-bottom: var(--space-sm);
}

.areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.areas-list li {
    padding: var(--space-xs) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--space-lg);
}

.areas-list li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: var(--space-xs);
    color: var(--primary-main);
    font-size: var(--text-sm);
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-main), var(--primary-light));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.info-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.info-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.info-card p {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
    font-size: var(--text-sm);
}

/* Contact Page Specific Styles */
.contact-info {
    padding: var(--space-sm) 0;
}

.contact-card {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.contact-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.contact-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.contact-details {
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.contact-link {
    color: var(--primary-main);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.business-hours {
    padding: var(--space-4xl) 0;
}

.hours-table {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--gray-200);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.emergency {
    background-color: var(--light-gray);
    font-weight: var(--font-semibold);
}

.hours-row .day {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--gray-800);
}

.hours-row .time {
    font-size: var(--text-lg);
    color: var(--primary-main);
    font-weight: var(--font-semibold);
}

.contact-form {
    padding: var(--space-4xl) 0;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-weight: var(--font-medium);
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-control,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-md);
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-main);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.invalid-feedback {
    display: block;
    color: var(--danger);
    font-size: var(--text-sm);
    margin-top: var(--space-xs);
}

.interest-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.form-check-input {
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
}

.form-check-input:checked {
    background-color: var(--primary-main);
    border-color: var(--primary-main);
}

.form-check-label {
    color: var(--gray-700);
    font-weight: var(--font-medium);
}

.map-section {
    padding: var(--space-4xl) 0;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-main), var(--accent-main));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.map-content i {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.map-content h4 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.map-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    line-height: var(--line-height-relaxed);
}

.map-content .btn {
    background: none;
    border: none;
    color: var(--white);
    font-weight: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: var(--space-sm) var(--space-sm);
}

.map-content .btn i {
    margin-right: 0.5rem;
    line-height: 1;
    margin: 0 auto;
}

.map-content .btn:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transform: none;
}

.quick-contact {
    padding: var(--space-4xl) 0;
}

.quick-actions {
    margin-top: var(--space-xl);
}

.quick-actions .btn {
    padding: var(--space-md) var(--space-2xl);
    font-weight: var(--font-semibold);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

/* Form animations and states */
.form-control:valid {
    border-color: var(--success);
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive adjustments for contact page */
@media (max-width: 767.98px) {
    .contact-form-wrapper {
        padding: var(--space-xl);
    }

    .hours-row {
        padding: var(--space-md) var(--space-lg);
        flex-direction: column;
        text-align: center;
        gap: var(--space-xs);
    }

    .interest-checkboxes {
        flex-direction: column;
    }

    .quick-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: var(--space-md);
    }

    .quick-actions .btn:last-child {
        margin-bottom: 0;
    }

    .map-container {
        height: 300px;
    }

    .map-content i {
        font-size: var(--text-4xl);
    }

    .map-content h4 {
        font-size: var(--text-xl);
    }

    .map-content p {
        font-size: var(--text-base);
    }
}