:root {
    --primary: #263238;
    --secondary: #607d8b;
    --accent: #ffcc00;
    --text: #333333;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--primary);
}

.nav-links li a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Info Section */
.info-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.info-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.7;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Forms - specifically NO Contact Form as requested, but general inputs if needed */
.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-info-list i {
    width: 50px;
    height: 50px;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h4 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background: var(--white);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.featured-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.featured-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.featured-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.check-list i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
}

.testimonial-card i.quote {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--primary);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    margin: 0;
    font-size: 1.1rem;
}

.user-details span {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* CTA Section */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #004080);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-radius: 40px;
    margin: 0 20px 100px;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Responsive fixes */
/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 30px;
}

.top-info span i {
    color: var(--secondary);
    margin-right: 8px;
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a:hover {
    color: var(--secondary);
}

/* Service Areas */
.areas-section {
    padding: 100px 0;
    background: var(--white);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.area-item {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.area-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    /* Above the sticky mobile call button */
    right: 30px;
    z-index: 10000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .whatsapp-float {
        bottom: 110px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .featured-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .featured-badge {
        right: 0;
        bottom: -20px;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: var(--light);
}

.brands-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.process-item {
    text-align: center;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
    line-height: 1.6;
    opacity: 0.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* Mobile Sticky Call Bar */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    border-top: 3px solid var(--secondary);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.sticky-call-btn i {
    font-size: 1.5rem;
    color: var(--secondary);
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(1.1) rotate(-10deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(10deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-10deg);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .sticky-call {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .featured-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .featured-badge {
        right: 0;
        bottom: -20px;
    }
}