/* =====================================
THEME 4: VIBRANT CORPORATE
Primary: #FF6B35 (Orange) | Secondary: #FFFFFF
===================================== */

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FFF0EB;
    --secondary: #FFFFFF;
    --dark: #1A1A2E;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* =====================================
HEADER - STICKY
===================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
}

.logo i {
    margin-right: 8px;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.desktop-menu ul li a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 30px 25px;
    transition: 0.4s;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
}

.mobile-menu-header h3 { color: var(--primary); font-size: 20px; }
.mobile-menu-header i { font-size: 24px; cursor: pointer; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 20px; }
.mobile-menu ul li a {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    display: block;
    transition: 0.3s;
}
.mobile-menu ul li a:hover { color: var(--primary); padding-left: 10px; }

/* =====================================
HERO SECTION - LEFT ALIGNED
===================================== */
.hero-section { height: 60vh; min-height: 500px; }
.heroSwiper, .hero-slide-content { height: 60vh; min-height: 500px; }

.hero-slide-content {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    margin-left: 10%;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.9);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); color: var(--white); }

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }

.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next, .swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 16px; }

/* =====================================
COMMON SECTIONS
===================================== */
.section-tag {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}
.section-header h2 { font-size: 42px; margin-bottom: 15px; }
.section-subtitle { color: var(--gray); font-size: 18px; max-width: 600px; margin: 0 auto; }
.title-divider { width: 60px; height: 3px; background: var(--primary); margin: 20px 0; }
.title-divider-center { width: 60px; height: 3px; background: var(--primary); margin: 20px auto; }

/* =====================================
ABOUT SECTION
===================================== */
.about-section { padding: 80px 0; background: var(--white); }
.about-image-wrap { position: relative; }
.about-image { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.floating-badge i { font-size: 28px; }
.about-content h2 { font-size: 38px; margin-bottom: 10px; }
.about-text { color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.quick-stats { display: flex; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; }
.stat-item h3 { font-size: 32px; font-weight: 800; color: var(--primary); margin: 0; }
.stat-item p { margin: 0; font-size: 14px; color: var(--gray); }
.about-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.about-btn:hover { background: var(--primary-dark); transform: translateX(5px); color: var(--white); }

/* =====================================
SERVICES - TABBED
===================================== */
.services-section { padding: 80px 0; background: var(--light-gray); }
.service-tabs { margin-top: 50px; }
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-link {
    padding: 12px 35px;
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #ddd;
}
.tab-link.active, .tab-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-icon i { font-size: 32px; color: var(--primary); }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* =====================================
TESTIMONIALS
===================================== */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 15px;
    text-align: center;
}
.testimonial-quote i { font-size: 40px; color: var(--primary); opacity: 0.5; margin-bottom: 20px; }
.testimonial-card p { font-size: 16px; line-height: 1.7; color: var(--gray); margin-bottom: 20px; }
.testimonial-author h4 { font-size: 18px; margin-bottom: 5px; }
.testimonial-author span { font-size: 12px; color: var(--gray); }

/* =====================================
AWARDS
===================================== */
.awards-section { padding: 80px 0; background: var(--light-gray); }
.award-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.award-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.award-card img { width: 100%; height: 250px; object-fit: cover; }
.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,107,53,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.award-card:hover .award-overlay { opacity: 1; }
.award-overlay i { font-size: 48px; color: var(--white); }
.award-content { padding: 20px; background: var(--white); text-align: center; }
.award-content h4 { font-size: 16px; margin: 0; }

/* =====================================
GALLERY
===================================== */
.gallery-section { padding: 80px 0; background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,107,53,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay i { font-size: 36px; color: var(--white); }

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; }
.lightbox-content img { width: 100%; height: 100%; object-fit: contain; }
.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

/* =====================================
CONTACT
===================================== */
.contact-section { padding: 80px 0; background: var(--light-gray); }
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: var(--shadow);
}
.contact-info h3 { font-size: 28px; margin-bottom: 15px; }
.contact-info > p { color: var(--gray); margin-bottom: 30px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}
.contact-item span { font-size: 12px; color: var(--gray); display: block; }
.contact-item h4 { font-size: 18px; margin: 0; }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}
.contact-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}
.submit-btn:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =====================================
FOOTER - TWO COLUMN
===================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo i { font-size: 32px; color: var(--primary); }
.footer-logo h3 { font-size: 24px; margin: 0; }
.footer-col p { opacity: 0.7; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { font-size: 18px; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 15px; }
.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
    background: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-form button:hover { background: var(--primary-dark); transform: scale(1.05); }
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    opacity: 0.6;
}

/* =====================================
FLOATING WHATSAPP
===================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: 0.3s;
}
.whatsapp-float span {
    position: absolute;
    right: 70px;
    background: var(--dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float:hover span { opacity: 1; visibility: visible; }

/* =====================================
RESPONSIVE
===================================== */
@media (max-width: 992px) {
    .desktop-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-text h1 { font-size: 36px; }
    .hero-text { margin-left: 5%; margin-right: 5%; }
    .section-header h2, .about-content h2 { font-size: 32px; }
}
@media (max-width: 768px) {
    .hero-section, .heroSwiper, .hero-slide-content { height: 50vh; min-height: 400px; }
    .hero-text h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; }
    .about-section, .services-section, .testimonials-section, .awards-section, .gallery-section, .contact-section { padding: 50px 0; }
    .quick-stats { justify-content: center; text-align: center; }
    .floating-badge { position: static; margin-top: 20px; justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}