@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
    --color-black: #000000;
    --color-navy: #14213d;
    --color-orange: #fca311;
    --color-grey: #e5e5e5;
    --color-white: #ffffff;
    --color-overlay: rgba(0, 0, 0, 0.6);

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.1);

    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-navy);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-grey {
    background-color: var(--color-grey);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #e59400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 163, 17, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: var(--color-navy);
    height: 70px;
    box-shadow: var(--shadow-premium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 65px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 50px;
}

.logo span {
    color: var(--color-orange);
}

/* Footer logo override - reduce vertical space */
.footer .logo {
    height: auto;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.footer .logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-orange);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-navy);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    padding: 15px 0;
    border-top: 3px solid var(--color-orange);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    color: var(--color-white) !important;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.dropdown-menu li a:hover {
    background-color: rgba(252, 163, 17, 0.1);
    color: var(--color-orange) !important;
    padding-left: 30px;
}

.nav-links li a i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center 30%;
    color: var(--color-white);
    padding-top: 80px;
}

.hero-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1;
}

.hero-inner .container {
    position: relative;
    z-index: 2;
}

.hero-inner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-inner p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    font-size: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-btn {
    background-color: var(--color-orange);
    color: white;
    font-size: 24px;
}

/* About Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--color-navy);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-orange);
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-black);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.mv-box h3 i {
    color: var(--color-orange);
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-premium);
}

/* Services Section Styles */
.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-bottom: 4px solid var(--color-orange);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-text {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
}

.btn-text:hover {
    color: var(--color-orange);
}

/* Why Choose Us Styles */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 30px;
    transition: var(--transition-smooth);
}

.why-icon {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Projects Section Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-grey);
}

.project-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    margin-bottom: 15px;
}

.mt-50 {
    margin-top: 50px;
}

/* Testimonials Styles */
.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    background-color: var(--color-grey);
    border-radius: 10px;
    margin-bottom: 30px;
}

.stars {
    color: var(--color-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-track {
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-info h4 {
    color: var(--color-navy);
    margin-bottom: 5px;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3,
.contact-info-container h3 {
    margin-bottom: 30px;
    color: var(--color-navy);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.w-100 {
    width: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-grey);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

/* Footer Styles */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.25rem;
    color: var(--color-white);
}

.mt-20 {
    margin-top: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
}

.social-links a:hover {
    background-color: var(--color-orange);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--color-orange);
    border: none;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .footer-left {
    text-align: left;
}

.footer-bottom .footer-right {
    text-align: right;
}

.footer-bottom .footer-right a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-right a:hover {
    color: var(--color-orange);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom .footer-left,
    .footer-bottom .footer-right {
        text-align: center;
    }
}

/* Mobile sticky call button */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: transparent;
        border: 2px solid var(--color-white);
        border-radius: 4px;
        cursor: pointer;
        font-size: 18px;
        color: var(--color-white);
        z-index: 1001;
    }

    .mobile-menu-toggle:hover {
        background-color: var(--color-orange);
        border-color: var(--color-orange);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-navy);
        box-shadow: var(--shadow-premium);
        padding: 20px 0;
        gap: 0;
        z-index: 1002;
    }

    .nav-links.active li {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active li:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .call-btn-mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: var(--color-orange);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 700;
        z-index: 2001;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }

    .floating-btns {
        bottom: 80px;
        right: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 20px 20px 20px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    #contact .container {
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-inner {
        padding: 60px 15px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-links {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}