/* Custom Properties */
:root {
    --color-orange: #f47321; /* From Logo */
    --color-orange-glow: rgba(244, 115, 33, 0.4);
    --color-dark: #1a1a1a;
    --color-dark-muted: #2d2d2d;
    --color-text: #4a4a4a;
    --color-light: #ffffff;
    --color-bg: #f9fafb;
    --color-border: #e5e7eb;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

/* Typography Utilities */
.text-orange {
    color: var(--color-orange) !important;
}

.text-white {
    color: var(--color-light) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff985c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-light);
    box-shadow: 0 10px 20px var(--color-orange-glow);
}

.btn-primary:hover {
    background-color: #d15d16;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px var(--color-orange-glow);
}

.btn-outline {
    border-color: var(--color-dark);
    color: var(--color-dark);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}

/* Shine Effect for Primary Button */
.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.05em;
}

.logo-brand {
    color: var(--color-dark);
}

.logo-loud {
    color: var(--color-orange);
    text-transform: uppercase;
}

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

.nav-links a:not(.btn) {
    font-family: var(--font-heading);
    font-weight: 500;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* We let Vanta handle the background color to match the 3D vibe */
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.2s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: var(--color-text);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.4s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.6s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-dark-muted);
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-dark-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-dark-muted);
    border-radius: 4px;
    animation: scroll 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0; /* For scroll animation */
    transform: translateY(40px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff985c 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--color-light);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card p {
    color: var(--color-text);
    transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--color-light);
}

/* Call to Action Section */
.cta {
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--color-light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.cta p {
    color: #a0a0a0;
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--color-orange);
    filter: blur(150px);
    opacity: 0.3;
    z-index: -1;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.info-card h3 {
    margin-bottom: 20px;
    color: var(--color-orange);
    font-size: 1.25rem;
}

.info-card p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.info-card strong {
    color: var(--color-dark);
}

.contact-form-wrapper {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0; /* Removed overall padding */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; /* Clips the banner nicely */
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    background-color: var(--color-orange); /* Vibrant Banner */
    color: var(--color-light);
    padding: 20px 40px;
    margin: 0 0 30px 0;
    text-align: center;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 40px 40px 40px; /* Padding for form body only */
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-dark); /* Uniform text color */
    transition: var(--transition);
    resize: none;
    background-color: white;
}

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

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand p {
    color: #888;
    margin-top: 20px;
    max-width: 350px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--color-light);
}

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

.footer-links ul li a {
    color: #888;
}

.footer-links ul li a:hover {
    color: var(--color-orange);
    padding-left: 8px;
}

.footer-contact p {
    color: #888;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-light);
        padding: 40px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Scroll Animation Class */
.animate-in {
    animation: fadeUp 0.8s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.wa-toggle {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.wa-toggle:hover {
    transform: scale(1.1);
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.wa-popup.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.wa-header {
    background-color: #128C7E;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-header-text h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.wa-header-text p {
    font-size: 0.75rem;
    color: #e0e0e0;
}

.wa-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.wa-close:hover {
    opacity: 1;
}

.wa-body {
    padding: 20px;
    background-color: #ECE5DD;
    /* WhatsApp default chat bg texture approx */
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d1cec7' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.wa-message {
    background-color: white;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    max-width: 90%;
}

.wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-top: 10px solid white;
    border-left: 10px solid transparent;
}

.wa-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-form input,
.wa-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: none;
    transition: border-color 0.2s;
}

.wa-form input:focus,
.wa-form textarea:focus {
    outline: none;
    border-color: #25D366;
}

/* Country Selector */
.country-selector {
    position: relative;
    display: inline-block;
}

.country-toggle {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    transition: var(--transition);
}

.country-toggle:hover {
    color: var(--color-orange);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.country-selector:hover .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: block;
    padding: 12px 16px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition);
}

.country-option:hover {
    background: var(--color-bg);
    color: var(--color-orange);
}

.country-option.active {
    background: rgba(244, 115, 33, 0.1);
    color: var(--color-orange);
}

/* About Section */
.about-section {
    background-color: var(--color-light);
}

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

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--color-text);
}

.about-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-dark);
}

.about-highlights li::before {
    content: '✓';
    color: var(--color-orange);
    font-weight: bold;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--color-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder h3 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    z-index: 2;
}

.about-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(244, 115, 33, 0.4) 0%, transparent 60%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
