/* Resets & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 50px;
    /* Increased to 50px as requested */
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: normal;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #006b40;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-whatsapp-full {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid #25d366;
    color: #25d366;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-whatsapp-full:hover {
    background-color: #25d366;
    color: white;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background: var(--color-white);
    height: 90px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--color-secondary);
}

.nav-links .btn {
    text-decoration: none;
}

/* Hero Updated */
#hero {
    height: 90vh;
    /* More cinematic height */
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.75)), url('../img/hero-bg-new.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    position: relative;
}

#hero h1 {
    font-size: 3.8rem;
    color: var(--color-white);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* About */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.about-highlights i {
    color: var(--color-secondary);
}

.about-img {
    flex: 1;
}

.about-img img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    border-top: 4px solid var(--color-accent);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--color-text-light);
}

.service-card ul li::before {
    content: '•';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Area of Action */
#locations {
    background: var(--color-white);
}

.locations-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--color-text-light);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    padding-bottom: 40%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer (Contact) - REFINED */
footer {
    background: #050d18;
    color: var(--color-white);
    padding-top: 80px;
    border-top: 5px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand Col */
.footer-logo {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.brand-desc {
    color: #a0aec0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Titles */
.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--color-accent);
}

/* Contact List */
.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cbd5e0;
}

.contact-info .icon {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-link {
    color: #cbd5e0;
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--color-secondary);
}

/* Form Styles */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--color-white);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.file-input-wrapper {
    margin-bottom: 20px;
}

.file-label {
    display: block;
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 5px;
}

input[type="file"] {
    padding: 5px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    height: auto;
}

input[type="file"]::file-selector-button {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 8px 15px;
    margin-right: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #006b40;
}

.contact-form select option {
    background-color: #050d18;
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    #hero {
        height: auto;
        padding: 100px 0;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    #hero p {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        padding: 0 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .map-container {
        padding-bottom: 75%;
    }
}