/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff; /* Blue */
    --primary-dark: #0052cc; /* Darker Blue */
    --primary-light: #3380ff; /* Lighter Blue */
    --secondary-color: #313131; /* Grey */
    --Whatsapp-color: #009900; /* Green */
    --accent-color: #ffffff; /* White */
    --Whatsapp-hover-color: #33cc33; /* Light Green */
    --text-dark: #000000; /* Black */
    --text-light: #313131; /* Grey */
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px; /* Rounded corners */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* new section */

/* Updated Sub-Services Styling - Using Flexbox for Dynamic Width */
.sub-services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sub-service-item {
    background: rgba(0, 102, 255, 0.1); 
    color: var(--text-dark);
    padding: 0.2rem 0.8rem;
    border: 1px solid rgba(0, 102, 255, 0.2);
    font-size: 0.75rem;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px; /* Ensure consistent height */
    white-space: nowrap; /* Prevent text from wrapping */
    border-radius: var(--border-radius);
}

/* Updated CTA Button Styling - 2px border */
.btn-get-quote {
    width: 100%;
    padding: 0.9rem 1.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700; /* Bold text */
    background: var(--primary-dark);
    color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-get-quote:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call-joseph {
    width: 100%;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 700; /* Bold text */
    /* background: hwb(115 0% 28%);
    color: #ffffff; */
    background: transparent;
    color: var(--text-dark);
    /* border-color: #002244; */
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow); */
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-call-joseph:hover {
    background: #0052cc;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Services Grid Adjustments */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 100%;
    padding: 0 2rem;
}

/* new section */

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    aspect-ratio: 3/1;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* Desktop Menu */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    aspect-ratio: 3/1;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 51, 102, 0.1);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1001;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.mobile-menu-close {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-close span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-close span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-close span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu-item {
    margin: 0;
    width: 100%;
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 51, 102, 0.1);
}

.mobile-menu-link:after {
    content: '';
    font-size: 1.2rem;
    font-weight: bold;
}

.mobile-menu-item.active > .mobile-menu-link:after {
    content: '−';
}

.mobile-dropdown-menu {
    background-color: rgba(0, 51, 102, 0.05);
    display: none;
    list-style: none;
    padding: 0;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-dropdown-menu a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.mobile-menu-item.active > .mobile-dropdown-menu {
    display: block;
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 120px 0 80px;
    height: fr;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--Whatsapp-color);
    color: var(--white);
    border-color: var(--Whatsapp-color);
}

.btn-whatsapp:hover {
    background: var(--Whatsapp-hover-color);;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-dark) 100%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    transform: translateY(-2px);
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-image {
    display: block;
}

.quote-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.quote-form-wrapper {
    width: 100%;
}

.quote-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.quote-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.quote-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.alternative-contact {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.alternative-contact p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    background: rgba(0, 102, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    /* margin-left: 10px;
    margin-right: 10px; */
    padding: 0 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: auto; /* Allow natural height */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto; /* Remove fixed height */
    object-fit: cover;
    aspect-ratio: 3/2; /* Maintain image aspect ratio */
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-content li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.pricing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-section .btn {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.pricing-section .btn:hover {
    background: #026326;
    color: white;
    transform: translateY(-2px);
}

.pricing-section .btn-whatsapp {
    background: var(--Whatsapp-hover-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.pricing-section .btn-whatsapp:hover {
    background: var(--Whatsapp-color);
    color: var(--white);
    transform: translateY(-2px);
}
/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 1rem;
    text-align: center;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Show mobile menu on mobile */
    .mobile-menu {
        display: block;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero section adjustments for mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .quote-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-image {
        display: none; /* Hide image on mobile */
    }
    
    .quote-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-small {
        width: 100%;
        max-width: 200px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Add min-width to CTA buttons on mobile */
    .btn {
        min-width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .quote-card {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Adjust mobile menu width for smaller screens */
    .mobile-menu {
        width: 90%;
    }
}

/* Add media query for large screens to limit service section to 2 columns */
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1fr;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Service Page Specific Styles */
.service-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 51, 102, 0.1) 100%);
    padding: 120px 0 80px;
    height: 1hr;
    display: flex;
    align-items: center;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-details-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.15rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    min-width: 2rem;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-benefits {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.2) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.service-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.service-benefits li:before {
    content: "✓";
    color: var(--white);
    font-weight: bold;
    position: absolute;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Service Contact Section */
.service-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 51, 102, 0.05) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.contact-method {
    min-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-method p:last-child {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: var(--white);
}

.related-services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 51, 102, 0.05) 100%);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-buttons .btn:hover {
    background: var(--accent-color);
}

.cta-buttons .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 51, 102, 0.1) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-quick-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-methods {
    padding: 80px 0;
    background: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 51, 102, 0.05) 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.service-areas h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-areas > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-group {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.area-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

.areas-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 2rem;
}

/* Loading and Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero-image {
        order: -1;
    }
    
    .service-hero-text h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 488px) {
/* Hero section adjustments for mobile */
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-image {
        order: -1;
    }
    
    .service-hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .service-hero-subtitle {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .service-hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .service-hero-buttons {
        justify-content: center;
    }
}