:root {
    --primary-color: #0d6e6e; /* Soft Deep Teal */
    --primary-light: #4a9d9c;
    --primary-dark: #004d40;
    --accent-color: #ff7043;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.1;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-text {
    color: var(--white);
    text-decoration: underline;
    margin-left: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 65px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo .dot {
    color: var(--primary-light);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a:not(.btn) {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-list a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-nav-btn {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05); /* Slight zoom effect start */
    animation: zoomEffect 20s infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px; /* Increased width */
    padding-left: 24px; /* Add some left padding */
}

.hero-title {
    font-size: 4rem; /* Slightly larger */
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

/* General Section Styles */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.grid {
    display: grid;
    gap: 32px;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-box {
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 32px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.card-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding-right: 24px;
}

.about-content .section-title {
    text-align: left;
    margin-left: 0;
}

.about-text {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-dark);
}

.about-features ion-icon {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-right: 12px;
}

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
        order: -1; /* Image on top on mobile */
    }
    
    .about-content {
        padding-right: 0;
    }
}

/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
}

.stars {
    color: #f59e0b;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonial-author .author-name {
    font-weight: 700;
    color: var(--primary-dark);
}

.testimonial-author .author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Contact */
.contact-wrapper {
    display: flex;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--primary-color);
    padding: 64px;
    color: var(--white);
    width: 100%;
    text-align: center;
}

.contact-info .section-title {
    color: var(--white);
    text-align: center;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.info-list {
    display: inline-block;
    text-align: left;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.info-list ion-icon {
    font-size: 1.5rem;
    margin-right: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.map-container {
    margin-top: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    padding: 10px;
}

.map-container iframe {
    width: 100%;
    height: 400px; /* Default height */
    border-radius: 8px; /* Slightly rounded corners for the map itself */
    display: block;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.contact-form {
    padding: 64px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 48px 0;
    background-color: var(--text-dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 8px;
    display: block;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    color: #64748b;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    margin-top: 32px;
    border-top: 1px solid #334155;
    padding-top: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-list {
        display: none;
    }

    .mobile-nav-btn {
        display: block;
    }

    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        gap: 16px;
        border-top: 1px solid var(--border-color);
    }
}
/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary-color);
}

/* Add a pulse animation to the call button to grab attention */
.call-btn {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(13, 110, 110, 0.7);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(13, 110, 110, 0);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 64px 0;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
}

.stat-item ion-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
    position: relative;
}

.process-step {
    padding: 24px;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 10px rgba(13, 110, 110, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    font-weight: 600;
    color: var(--text-dark);
    list-style: none; /* Hide default triangle in some browsers */
    position: relative;
    padding-right: 24px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 16px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* Service Areas Section */
.areas {
    background-color: var(--white);
    text-align: center;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.area-badge {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.area-badge:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Positioned to the left of the WhatsApp/Call buttons */
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 90px;
        right: 20px;
        z-index: 990;
    }
}
