/* 
  Reset & Base Styles
*/
:root {
    --primary-color: hsl(45, 100%, 51%);
    /* Amber/Yellow for high visibility */
    --primary-dark: hsl(38, 100%, 50%);
    --text-dark: hsl(0, 0%, 7%);
    --text-light: hsl(0, 0%, 100%);
    --text-grey: hsl(0, 0%, 27%);
    /* Darker grey for better contrast */
    --bg-light: hsl(0, 0%, 100%);
    /* Pure white instead of grey */
    --bg-dark: hsl(0, 0%, 10%);
    --whatsapp-green: hsl(142, 70%, 49%);
    --transition-speed: 0.3s;
    --font-main: 'Roboto', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/*
  Utility Classes
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/*
  Header
*/
.header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .logo-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav {
    display: none;
    /* Mobile first hidden */
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: 20px;
    }

    .nav-link {
        color: var(--text-light);
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }
}

/*
  Hero Section
*/
.hero {
    position: relative;
    height: 90vh;
    /* Takes up most of the viewport */
    min-height: 500px;
    /* Use g24.png as base if available, fallback to dark gradient */
    background: url('assets/g24.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Premium Dark Gradient Overlay instead of flat grey */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 30, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ddd;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    /* Responsive typography */
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: #eee;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

/* Trust Indicators in Hero */
.trust-indicators {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.indicator i {
    color: var(--primary-color);
    margin-right: 5px;
}

/*
  Services Section
*/
.services {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Removed simple background to use pseudo-elements */
}

/* Blurred Background Image */
.services::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    /* Extend bounds to prevent white edges from blur */
    background: url('assets/g24.png') no-repeat center center/cover;
    filter: blur(8px);
    z-index: 0;
}

/* Dark Overlay for Readability */
.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
    /* Check Z-index to sit above overlay */
}

.services .section-title {
    color: var(--text-light);
    /* White title on dark background */
}

.services .section-subtitle {
    color: #ccc;
    /* Lighter subtitle */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 0 0 30px 0;
    /* Padding bottom only, others 0 for image */
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden;
    /* For image corners */
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: -35px;
    /* Pull content up slightly */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.icon-box {
    background-color: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    /* Border to separate from image */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 0 20px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-grey);
    padding: 0 20px;
}

/*
  Benefits Section
*/
.benefits {
    padding: 60px 0;
    /* Subtle warm gradient instead of plain white/grey */
    background: linear-gradient(to bottom, #ffffff 0%, #fffdf0 100%);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 350px;
}

.benefits-list i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.benefits-list p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* 
  Removed Area Section Styling
*/

/* 
  Final CTA
*/
.final-cta {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--text-dark);
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* 
  Footer
*/
.footer {
    background-color: #111;
    color: #777;
    padding: 40px 0 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-info h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-contact h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* 
  WhatsApp Floating Button
*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
}

/* 
  Mobile Navigation Styles & Optimization
*/
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo .logo-brand {
        font-size: 1.5rem;
    }

    .nav {
        display: flex;
        font-size: 0.9rem;
        gap: 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 2rem;
    }
}