:root {
    --primary: #FF6A00;
    --primary-dark: #cc5500;
    --secondary: #e0e0e0;
    --text-dark: #222222;
    --text-light: #f5f5f5;
    --text-muted: #666666;
    --bg-dark: #ffffff;
    --bg-light: #f4f6f8;
    --bg-card: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --whatsapp: #25d366;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(90deg, #FF6A00, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 106, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* Header & Nav */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
}

header.scrolled nav {
    height: 65px;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-light); /* explicitly white for dark menu */
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

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

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

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    color: var(--text-light); /* explicitly white for dark menu */
}

.nav-links a:not(.btn-small):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-small):::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-small):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-small {
    padding: 10px 20px;
    background-color: var(--primary);
    color: #fff !important;
    border-radius: 6px;
    font-weight: 600;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF3D00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF3D00, var(--primary));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light); /* over dark hero image */
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(255, 106, 0, 0.1);
    color: #fff;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('img/1 (5).jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(255, 106, 0, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Light shadow */
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    background-color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-card.highlight {
    background: linear-gradient(145deg, #ffffff, #fff5f0);
    border-color: rgba(255, 106, 0, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark); /* Updated for light theme */
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark); /* Updated for light theme */
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--bg-light);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about h2 span {
    color: var(--primary);
}

.about p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), #FF3D00);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.4);
    border: 5px solid #fff;
}

.experience-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.experience-badge strong {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-top: 5px;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.service-item {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: #fff;
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: rgba(255, 106, 0, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark); /* Light theme update */
}

.service-info p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

.featured-item {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .featured-item {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Regions */
.regions {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.regions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.region-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.region-card:hover {
    border-color: var(--primary);
    background-color: rgba(255, 106, 0, 0.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.region-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.region-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.region-card p {
    color: var(--text-muted);
}

.map-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        aspect-ratio: 16 / 9;
        min-height: 260px;
    }
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #FF3D00);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-call {
    background-color: #fff;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-call:hover {
    background-color: var(--text-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background-color: var(--bg-light);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 20px;
    max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Fixed CTA */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-card);
    padding: 10px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-color);
}

.mobile-fixed-cta .btn {
    flex: 1;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1rem;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #20b858;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .features { grid-template-columns: 1fr; margin-top: 40px; padding-top: 0; gap: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .experience-badge { bottom: 20px; right: 20px; width: 100px; height: 100px; padding: 15px; }
    .experience-badge strong { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: 0.4s ease-in-out;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { left: 0; }
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .mobile-fixed-cta { display: flex; gap: 10px; }
    footer { padding-bottom: 80px; /* Space for fixed cta */ }
    .regions-list { grid-template-columns: 1fr; }
}
