/* Board Bazaar - Professional CSS Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ED6D00;
    --secondary-orange: #ED6D00;
    --primary-blue: #10387D;
    --light-blue: #10387D;
    --accent-blue: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray-medium: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Header Styles */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, var(--primary-orange) 0%, var(--primary-orange) 50%, #10387D 50%, #10387D 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 5px 0;
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    height: 60px;
}

.mobile-logo {
    flex-shrink: 0;
    margin-right: 12px;
}

.mobile-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
    border: none;
    box-shadow: 0 2px 8px rgba(255,107,53,0.3);
    transition: transform 0.3s ease;
}

.mobile-logo-img:hover {
    transform: scale(1.05);
}

.mobile-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-menu-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1003;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    font-size: 1.3rem;
    margin: 0;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.close-sidebar:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-content {
    padding: 20px;
}

.sidebar-quick-links,
.sidebar-nav,
.sidebar-contact {
    margin-bottom: 30px;
}

.sidebar-quick-links h3,
.sidebar-nav h3,
.sidebar-contact h3 {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-medium);
}

.sidebar-quick-links a,
.sidebar-nav > a {
    display: block;
    padding: 10px 15px;
    margin-bottom: 5px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-quick-links a:hover,
.sidebar-nav > a:hover {
    background-color: var(--gray-light);
    color: var(--primary-orange);
    transform: translateX(5px);
}

.sidebar-quick-links a.active,
.sidebar-nav > a.active {
    background-color: var(--primary-orange);
    color: var(--white);
}

.sidebar-dropdown {
    margin-bottom: 10px;
}

.sidebar-dropdown .dropdown-toggle {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-dropdown .dropdown-toggle:hover {
    background-color: var(--gray-light);
    color: var(--primary-orange);
}

.sidebar-dropdown .dropdown-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidebar-dropdown .dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.sidebar-dropdown .dropdown-menu li {
    margin-bottom: 5px;
}

.sidebar-dropdown .dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-dropdown .dropdown-menu a:hover {
    background-color: var(--gray-light);
    color: var(--primary-orange);
}

.sidebar-contact .phone-number {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: var(--gray-light);
    border-radius: 5px;
    color: var(--text-dark);
}

.sidebar-contact .phone-number i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.sidebar-contact .copy-number {
    cursor: pointer;
    transition: color 0.3s ease;
}

.sidebar-contact .copy-number:hover {
    color: var(--primary-orange);
}

.sidebar-contact .social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.sidebar-contact .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-contact .social-links a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Desktop Only Classes */
.desktop-only {
    display: none !important;
}

/* Responsive Design for Mobile First */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    .mobile-sidebar {
        display: none !important;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    animation: zoomIn 0.3s ease forwards;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 2001;
}

/* Clickable Image Enhancement */
.clickable-image {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.clickable-image::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.clickable-image:hover::after {
    opacity: 1;
}

/* Make category images clickable */
.sign-category {
    position: relative;
}

.category-image img {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-tile {
    position: relative;
    overflow: hidden;
}

.service-tile img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.service-tile:hover img {
    transform: scale(1.1);
}

.hero-slide img {
    cursor: zoom-in;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    /* Improved Mobile Typography */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    h4 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    
    p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 40px 20px 30px;
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-description p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .category-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .category-image img {
        height: 200px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    /* Why Choose Section Mobile */
    .why-choose {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .why-points {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .why-point {
        padding: 30px 25px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .why-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .why-point p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .why-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }
    
    .service-tiles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-tile {
        height: 200px;
    }
    
    .service-overlay {
        padding: 20px 15px 15px;
    }
    
    .service-overlay h4 {
        font-size: 16px;
    }
    
    .service-overlay p {
        font-size: 13px;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-tiles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-tile {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .faq-tile h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .faq-tile p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-logo img {
        width: 250px;
        height: auto;
        max-height: 90px;
        object-fit: contain;
    }
    
    .footer-logo h3 {
        font-size: 20px;
        margin: 0;
    }
    
    .footer-section p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        font-size: 14px;
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: var(--primary-orange);
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0 0;
        border-top: 1px solid var(--gray-medium);
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        color: var(--text-light);
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 15px;
    }
    
    /* Mobile Sidebar Improvements */
    .mobile-sidebar {
        width: 280px;
        right: -280px;
    }
    
    .sidebar-content {
        padding: 15px;
    }
    
    .sidebar-quick-links,
    .sidebar-nav,
    .sidebar-contact {
        margin-bottom: 20px;
    }
    
    .sidebar-quick-links h3,
    .sidebar-nav h3,
    .sidebar-contact h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .sidebar-quick-links a,
    .sidebar-nav > a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .sidebar-contact .phone-number {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    /* Category Pages Mobile */
    .category-hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .category-intro {
        padding: 50px 0;
    }
    
    .intro-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .intro-text p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .feature-item i {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .gallery-item {
        height: 220px;
        border-radius: 12px;
    }
    
    .gallery-overlay {
        padding: 25px 15px 15px;
    }
    
    .gallery-overlay h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .gallery-overlay p {
        font-size: 13px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card i {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .why-point {
        padding: 25px 20px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .why-content h3 {
        font-size: 18px;
    }
    
    .mobile-sidebar {
        width: 250px;
        right: -250px;
    }
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 8px 0;
    box-shadow: none;
    border-bottom: 2px solid var(--primary-orange);
    position: relative;
    z-index: 1001;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.main-logo-img {
    height: 80px;
    width: auto;
    max-width: 270px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: none;
    color: var(--primary-orange);
}

.logo-text .highlight {
    color: var(--secondary-orange);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.logo-text .tagline {
    font-size: 12px;
    margin: 2px 0 0 0;
    opacity: 0.9;
    font-style: normal;
    letter-spacing: 0.3px;
    color: var(--primary-orange);
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-links {
    display: flex;
    gap: 12px;
}

.quick-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.quick-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-1px);
}

.quick-links a.active {
    background: var(--primary-orange);
    color: var(--white);
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.phone-number i {
    font-size: 11px;
    color: var(--secondary-orange);
}

.copy-number {
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.copy-number:hover {
    color: var(--primary-orange);
}

.copy-number:hover {
    color: var(--secondary-orange);
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}
.quick-links a {
    background: rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.quick-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: none;
}

.quick-links a.active {
    background: var(--primary-orange);
    color: var(--white);
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 11px;
}

.phone-number i {
    color: var(--light-blue);
}

.phone-number a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 5px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.social-links a.facebook {
    background: #1877f2;
}

.social-links a.facebook:hover {
    background: #0e5fc9;
    transform: none;
}

.social-links a.twitter {
    background: #1da1f2;
}

.social-links a.twitter:hover {
    background: #1a91da;
    transform: none;
}

.social-links a.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #dd2a7b, #8134af, #515bd4, #f58529);
    transform: none;
}

.social-links a.linkedin {
    background: #0077b5;
}

.social-links a.linkedin:hover {
    background: #005885;
    transform: none;
}

.social-links a.youtube {
    background: #ff0000;
}

.social-links a.youtube:hover {
    background: #cc0000;
    transform: none;
}

/* Navigation Header */
.nav-header {
    background: var(--primary-orange);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    padding: 8px 0;
}

nav > ul > li {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-orange);
    color: var(--white);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-blue);
    min-width: 160px;
    border-radius: 6px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.15);
    border-top: 3px solid var(--primary-orange);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

.dropdown-menu a:hover {
    background: var(--primary-orange);
    padding-left: 20px;
}

.dropdown-menu a:first-child:hover {
    border-radius: 6px 6px 0 0;
}

.dropdown-menu a:last-child:hover {
    border-radius: 0 0 6px 6px;
}

/* Ensure clean vertical dropdown appearance */
.dropdown-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--primary-blue);
}

/* Remove any glass or blur effects */
.nav-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Chevron icon animation */
.dropdown-toggle i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hero Section - Modern Professional Design */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.hero-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 60px 30px 30px;
    text-align: left;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    max-width: 600px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-arrow:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

/* Hero Section - Full Size Images */
.hero-section {
    padding: 0;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 3;
}

.slide-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.4;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Navigation Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-blue);
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-orange);
    border-color: var(--white);
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* About Section - Clean Simple Layout */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-left {
    padding-right: 40px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-orange);
}

.about-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sign-category {
    background: var(--white);
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
}

.category-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-image:hover img {
    transform: scale(1.02);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: aesthet-nova, serif;
    font-style: normal;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: var(--primary-orange);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    font-family: aesthet-nova, serif;
    font-style: normal;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    border: 2px solid #fff;
}

.cta-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
}

.why-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 100px;
}

.why-point {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.why-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
}

.why-point:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.why-content h3 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.1);
}

.service-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    height: 250px;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-tile:hover .service-overlay {
    transform: translateY(0);
}

.service-tile:hover img {
    transform: scale(1.1);
}

.service-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* FAQ Section - Desktop Version Matching Mobile */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(16, 56, 125, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(16, 56, 125, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 12px 40px rgba(237, 109, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    gap: 16px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(16, 56, 125, 0.02);
}

.faq-item.active .faq-question {
    background-color: rgba(237, 109, 0, 0.02);
}

.faq-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), #1e4bb7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 56, 125, 0.2);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-orange), #ff8533);
    box-shadow: 0 4px 12px rgba(237, 109, 0, 0.3);
    transform: scale(1.05);
}

.faq-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.faq-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-text h3 {
    color: var(--primary-blue);
}

.faq-tag {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(237, 109, 0, 0.2);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item.active .faq-toggle {
    background: var(--primary-orange);
    color: var(--white);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(237, 109, 0, 0.3);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 84px;
    max-height: 300px;
    border-top-color: rgba(16, 56, 125, 0.1);
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    padding: 16px 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-blue), #1e4bb7);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(16, 56, 125, 0.2);
    border: 2px solid var(--primary-blue);
}

.faq-cta p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 109, 0, 0.3);
}

.faq-cta-btn:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 109, 0, 0.4);
}

/* FAQ Section - Modern Accordion Style */
.faq-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-medium);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.faq-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 30px rgba(255,107,53,0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    gap: 16px;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--gray-medium);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::after {
    opacity: 0;
}

.faq-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon-wrapper {
    transform: scale(1.05);
}

.faq-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.faq-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.faq-tag {
    background: var(--primary-orange);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(255,107,53,0.2);
}

.faq-tag.timeline {
    background: var(--light-blue);
    box-shadow: 0 2px 8px rgba(59,130,246,0.2);
}

.faq-tag.service {
    background: #10b981;
    box-shadow: 0 2px 8px rgba(16,185,129,0.2);
}

.faq-tag.location {
    background: #8b5cf6;
    box-shadow: 0 2px 8px rgba(139,92,246,0.2);
}

.faq-tag.warranty {
    background: #f59e0b;
    box-shadow: 0 2px 8px rgba(245,158,11,0.2);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item.active .faq-toggle {
    background: var(--primary-orange);
    color: var(--white);
    transform: rotate(180deg);
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
    border-top-color: var(--gray-medium);
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--gray-light), var(--white));
    border-radius: 16px;
    border: 1px solid var(--gray-medium);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.faq-cta-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.faq-cta-btn i {
    font-size: 18px;
}

/* Responsive Design for Category Pages */
.category-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.category-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 20px;
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: var(--white);
}

.feature-item span {
    font-weight: 500;
    font-size: 16px;
}

.gallery-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 280px;
    background: var(--white);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-orange);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Category Pages */
@media (max-width: 768px) {
    .category-hero {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .category-intro {
        padding: 60px 0;
    }
    
    .intro-text h2 {
        font-size: 28px;
    }
    
    .intro-text p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--primary-orange) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-section {
    text-align: left;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover::before {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(8px);
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--primary-orange);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-bottom p span {
    color: var(--primary-orange);
    font-weight: 600;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    background: #128c7e;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info Card with Motion UI */
.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f3 100%);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    animation: cardEntrance 0.8s ease-out;
    border: 2px solid var(--primary-orange);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: inherit;
    border-radius: 50% 50% 0 0;
}

.card-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.card-header h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-content {
    padding: 40px 30px;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-row:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #fff8f3, #ffffff);
}

.contact-row:hover::before {
    left: 100%;
}

.contact-row:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.contact-row:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.contact-icon i {
    color: white;
    font-size: 24px;
}

.contact-text h3 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-dark);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.highlight-text {
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 17px;
}

.email-link {
    color: var(--primary-orange) !important;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.copy-number {
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.copy-number::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: width 0.3s ease;
}

.copy-number:hover::after {
    width: 100%;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

.email-link:hover {
    color: var(--secondary-orange) !important;
    transform: scale(1.05);
}

.copy-number:hover {
    color: var(--secondary-orange) !important;
    transform: scale(1.05);
}

.social-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--gray-light), #ffffff);
    border-top: 1px solid var(--gray-medium);
}

.social-section h4 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: white;
}

.social-link.facebook:hover i { color: #1877f2; }
.social-link.twitter:hover i { color: #1da1f2; }
.social-link.instagram:hover i { color: #e4405f; }
.social-link.linkedin:hover i { color: #0077b5; }
.social-link.youtube:hover i { color: #ff0000; }

.social-link.facebook:hover::before { background: #1877f2; }
.social-link.twitter:hover::before { background: #1da1f2; }
.social-link.instagram:hover::before { background: #e4405f; }
.social-link.linkedin:hover::before { background: #0077b5; }
.social-link.youtube:hover::before { background: #ff0000; }
/* Contact Information Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-details h3 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-orange);
    text-decoration: underline;
}

/* Social Media Section */
.contact-social {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--gray-medium);
}

.contact-social h3 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social .social-links a {
    color: var(--white);
    text-decoration: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.map-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--white);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-medium);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}

.faq-question:hover i {
    color: var(--white);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Quick Links Active State */
.quick-links a.active {
    background: rgba(255,255,255,0.2);
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
    
    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 24px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        font-size: 32px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-faq-section {
        padding: 60px 0;
    }
    
    .faq-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer p {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 15px 30px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    color: var(--white);
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-logo h3 {
    margin: 0;
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-section .contact-item i {
    color: var(--primary-orange);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-section .contact-item span {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366 !important;
    color: white !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    text-decoration: none !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4) !important;
    z-index: 10000 !important;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    animation: whatsappFloat 3s ease-in-out infinite;
}

@keyframes whatsappFloat {
    0%, 100% { 
        transform: scale(1) translateY(0); 
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); 
    }
    50% { 
        transform: scale(1.05) translateY(-5px); 
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6); 
    }
}

.whatsapp-float:hover {
    background: #128c7e !important;
    transform: scale(1.15) translateY(-8px) !important;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.whatsapp-float i {
    color: white !important;
    animation: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent 70%);
    border-radius: 50%;
    animation: whatsappGlow 2s ease-in-out infinite;
}

@keyframes whatsappGlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2); 
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer Contact Info Styles */
.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--white);
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-info p:last-child {
    margin-bottom: 0;
}

.footer-contact-info i {
    color: var(--primary-orange);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 14px;
}

.footer-contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .quick-contact {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .quick-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .why-points {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-tiles {
        grid-template-columns: 1fr;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    /* FAQ Mobile Responsive Styles */
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .faq-accordion {
        max-width: 100%;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 16px;
        gap: 12px;
    }
    
    .faq-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .faq-text h3 {
        font-size: 15px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px 68px;
        max-height: 250px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .faq-cta {
        margin-top: 30px;
        padding: 24px 20px;
    }
    
    .faq-cta p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .faq-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Mobile Logo Responsive Styles */
@media (max-width: 380px) {
    .mobile-logo-img {
        width: 65px;
        height: 65px;
    }
}