/* ==========================================
   MSL Security - Main Stylesheet
   Author: MSL Security
   Description: Professional security company website
   ========================================== */

/* CSS Variables - Updated to match MSL Brochure Design */
:root {
    --primary-color: #0099ff;
    --primary-dark: #0066cc;
    --primary-light: #33aaff;
    --secondary-color: #ff6600;
    --orange-bright: #ff7700;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f5f5f5;
    --background-texture: #e8e8e8;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #dddddd;
    --gray-400: #cccccc;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: bold;
}

.logo h1 span {
    color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

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

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-quote {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
}

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

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Quick Contact Bar
   ========================================== */
.quick-contact {
    background-color: var(--background-light);
    padding: 30px 0;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-item div span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item div a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item div a:hover {
    color: var(--primary-color);
}

.contact-item div p {
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* ==========================================
   Why Choose Us
   ========================================== */
.why-choose-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   Services Overview
   ========================================== */
.services-overview {
    padding: 80px 0;
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 24px;
    color: var(--success);
}

.benefit-item:hover i {
    color: var(--white);
}

.benefit-item p {
    font-weight: 500;
    margin: 0;
}

/* ==========================================
   Call to Action
   ========================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col h3 span {
    color: var(--white);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: #cccccc;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #cccccc;
}

/* ==========================================
   WhatsApp Float Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ==========================================
   Service Detail Pages
   ========================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail.alternate {
    background-color: var(--background-light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail.alternate .service-detail-grid {
    grid-template-columns: 1fr 1fr;
}

.service-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-detail-content .tagline {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.service-detail-content .description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-list li i {
    color: var(--success);
    font-size: 18px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    color: var(--text-light);
}

.image-placeholder i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* ==========================================
   About Page Styles
   ========================================== */
.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--background-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-choose {
    padding: 80px 0;
}

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item-alt {
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-item-alt:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-item-alt i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item-alt:hover i {
    color: var(--white);
}

.feature-item-alt h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item-alt p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-item-alt:hover p {
    color: var(--white);
}

.our-approach {
    padding: 80px 0;
    background-color: var(--background-light);
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.approach-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.approach-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.step-number {
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-areas {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.area-card {
    background-color: var(--background-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

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

.area-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.area-card:hover i {
    color: var(--white);
}

.area-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.area-card p {
    color: var(--text-light);
}

.area-card:hover p {
    color: var(--white);
}

/* ==========================================
   Gallery Page Styles
   ========================================== */
.gallery-filter {
    padding: 40px 0 20px;
    background-color: var(--background-light);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.gallery-section {
    padding: 60px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item.hide {
    display: none;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image .image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(70%);
    transition: var(--transition);
}

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

.gallery-overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.view-btn:hover {
    background-color: var(--primary-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.modal-info {
    padding: 40px;
}

.modal-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   Contact Page Styles
   ========================================== */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-card small {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-top: 10px;
}

/* Quote Form */
.quote-form-section {
    padding: 80px 0;
}

.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-form-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quote-form-header p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-color);
    margin-top: 3px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .service-detail-grid,
    .about-grid,
    .modal-body {
        grid-template-columns: 1fr;
    }

    .service-detail.alternate .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail.alternate .service-detail-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .quote-form-wrapper {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-items {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   BROCHURE-STYLE ENHANCEMENTS
   ========================================== */

/* Orange Diagonal Banner */
.orange-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--orange-bright) 100%);
    color: var(--white);
    padding: 40px 60px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    margin: 40px 0;
}

.orange-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    font-style: italic;
}

.orange-banner p {
    font-size: 24px;
    margin: 10px 0 0 0;
    font-style: italic;
}

/* Blue Service Boxes (Brochure Style) */
.service-box-blue {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin: 20px 0;
}

.service-box-blue h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-box-blue h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.service-box-blue p,
.service-box-blue li {
    color: var(--white);
    opacity: 0.95;
}

.service-box-blue ul {
    list-style: none;
    margin-top: 15px;
}

.service-box-blue ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-box-blue ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1;
}

/* Orange CTA Box */
.orange-cta-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--orange-bright));
    color: var(--white);
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--shadow-lg);
}

.orange-cta-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-style: italic;
}

.orange-cta-box p {
    font-size: 18px;
    margin: 0;
}

/* Textured Background */
.textured-bg {
    background-color: var(--background-texture);
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,.02) 10px, rgba(0,0,0,.02) 20px);
}

/* Blue Text Highlight */
.text-blue {
    color: var(--primary-color);
    font-weight: 600;
}

/* Orange Text Highlight */
.text-orange {
    color: var(--secondary-color);
    font-weight: 600;
    font-style: italic;
}

/* Service Cards with Blue Background (Brochure Style) */
.service-card-brochure {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-bottom: 30px;
}

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

.service-card-brochure h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card-brochure h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.service-card-brochure p,
.service-card-brochure li {
    color: var(--white);
    opacity: 0.95;
}

.service-card-brochure ul {
    list-style: none;
    margin-top: 15px;
}

.service-card-brochure ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-card-brochure ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Icon Boxes (Brochure Style) */
.icon-box-brochure {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box-brochure i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
}

.icon-box-brochure.orange i {
    color: var(--secondary-color);
}

.icon-box-brochure h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.icon-box-brochure p {
    color: var(--text-light);
    font-size: 14px;
}

/* Two-Column Layout (Brochure Style) */
.two-column-brochure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.two-column-brochure.with-sidebar {
    grid-template-columns: 2fr 1fr;
}

@media (max-width: 968px) {
    .two-column-brochure,
    .two-column-brochure.with-sidebar {
        grid-template-columns: 1fr;
    }

    .orange-banner {
        clip-path: none;
        padding: 30px 20px;
    }
}

/* Emphasis Box */
.emphasis-box {
    border-left: 5px solid var(--secondary-color);
    background-color: var(--background-light);
    padding: 25px 30px;
    margin: 25px 0;
}

.emphasis-box.blue {
    border-left-color: var(--primary-color);
}

.emphasis-box h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Brochure-Style Taglines */
.tagline {
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    margin: 20px 0;
}

.tagline.orange {
    color: var(--secondary-color);
}

/* Update existing service-tagline for consistency */
.service-tagline {
    color: var(--secondary-color) !important;
    font-weight: 600 !important;
    font-style: italic !important;
    font-size: 18px !important;
}

/* Benefits list with orange checkmarks */
.benefits-list-orange {
    list-style: none;
    margin: 20px 0;
}

.benefits-list-orange li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefits-list-orange li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 14px;
}

/* Brochure-style sections alternate backgrounds */
.section-alt-bg {
    background: linear-gradient(to bottom, var(--background-light) 0%, var(--white) 100%);
}

/* Contact Info Brochure Style */
.contact-info-brochure {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-info-brochure h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-info-brochure p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-brochure i {
    color: var(--secondary-color);
    width: 20px;
}
