/* ===== FIXED CSS - VERTICAL SCROLLING, NO SCROLLBAR VISIBLE ===== */
/* Sequel Sans Font Implementation */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #585570;
    --primary-dark: #373435; 
    --secondary: #2980b9;
    --accent: #f39c12;
    --light: #ecf0f1;
    --dark: #373435;
    --text: #373435;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(88, 85, 112, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --danger: #dc3545;
    --border: #e9ecef;
}



/* ===== RESET AND BASE STYLES - HIDE SCROLLBARS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #f9f9f9;
    min-height: 100vh;
    position: relative;
    font-weight: 400;
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
}

/* Allow scrolling but hide scrollbar */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Main content area - full width */
main {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    overflow-x: hidden;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 85, 112, 0.3);
}

.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-light {
    background-color: white;
}

.section-dark {
    background-color: var(--dark);
    color: white;
}

.section-dark h2 {
    color: white;
}

.text-center {
    text-align: center;
}

/* ===== FLOATING LOGO STYLES ===== */
.floating-logo {
    position: fixed;
    top: 5px;
    left: 10px;
    z-index: 1001;
    animation: fadeIn 1s ease-in-out;
    display: block;
    max-width: 150px;
}

.floating-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(6px);
    border: 1.5px solid #585570;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18),
                0 0 0 6px rgba(255, 255, 255, 0.45);
    transition: all 0.35s ease;
    padding: 12px;
}

.floating-logo img:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25),
                0 0 0 6px rgba(255, 255, 255, 0.55);
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateX(-20px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* ===== HEADER + NAVIGATION ===== */
header {
    width: 100%;
    background: var(--primary);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: var(--shadow);
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(88, 85, 112, 0.1);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    transform: translateX(-40px); /* Shift everything left 40px */
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    user-select: none;
    color: #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    justify-content: center;
    margin: 0 0 0 60px;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
    position: relative;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover:after {
    width: 80%;
}

.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.active:after {
    width: 80%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li {
    animation: fadeInDown 0.5s ease forwards;
    opacity: 0;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

/* ===== PREMIUM MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    cursor: pointer;
    border: none;
    z-index: 1003;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.mobile-menu-btn:hover::before {
    left: 100%;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-menu-btn.active {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.9), rgba(243, 156, 18, 0.7));
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px);
    background: #fff;
    width: 28px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
    background: #fff;
    width: 28px;
}

/* ===== PREMIUM MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Premium Mobile Menu Sidebar - HIDE SCROLLBAR */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: 999;
    padding: 100px 30px 50px;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto; /* Allow scrolling */
    overflow-x: hidden;
}

/* Hide scrollbar for mobile menu */
.mobile-menu-sidebar::-webkit-scrollbar {
    display: none;
}

.mobile-menu-sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu-sidebar.active {
    right: 0;
}

/* Mobile menu items */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-menu li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-menu a {
    display: block;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.mobile-nav-menu a:hover::before {
    left: 100%;
}

.mobile-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav-menu a.active {
    background: linear-gradient(90deg, rgba(243, 156, 18, 0.3), rgba(243, 156, 18, 0.1));
    color: var(--accent);
    border-color: rgba(243, 156, 18, 0.5);
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-menu-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 800px;
    color: white;
    padding: 0 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    box-sizing: border-box;
}

.slide-nav-btn {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    pointer-events: auto;
    z-index: 20;
}

.slide-nav-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    width: 100%;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    max-width: 100%;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transition: var(--transition);
}

.service-card:hover:before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.service-list {
    list-style-type: none;
    margin-top: 15px;
}

.service-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===== PRINCIPLES SECTION ===== */
.principles-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    width: 100%;
}

.principle-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.principle-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent);
}

.principle-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    min-width: 200px;
    box-sizing: border-box;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--primary);
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-details p {
    margin-bottom: 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 20px;
    width: 100%;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    transition: var(--transition);
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bdc3c7;
    width: 100%;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 60px 0;
    width: 100%;
    position: relative;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.gallery-tabs {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.gallery-tab {
    padding: 12px 30px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 2px;
}

.gallery-tab.active {
    background: var(--primary);
    color: white;
}

.category-filters, .subcategory-filters, .design-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    width: 100%;
}

.category-filter, .subcategory-filter, .design-category {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter.active, .subcategory-filter.active, .design-category.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-content {
    display: none;
    width: 100%;
}

.gallery-content.active {
    display: block;
}

.gallery-grid, .designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.gallery-item, .design-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
    width: 100%;
}

.gallery-item:hover, .design-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img, .design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img, .design-item:hover img {
    transform: scale(1.05);
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    background: transparent;
    margin: 0;
    padding: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.6);
}

.modal-body {
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
}

.modal-image-section {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.modal-main-image {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
}

.modal-main-image img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modal-image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 2002;
    box-sizing: border-box;
}

.modal-nav-btn {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-nav-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.modal-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
    overflow-x: auto;
}

/* Hide scrollbar for thumbnail container */
.modal-thumbnails::-webkit-scrollbar {
    display: none;
}

.modal-thumbnails {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--accent);
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PROJECT STATS ===== */
.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item.animated .stat-number {
    animation: countUp 0.8s ease-out;
}

/* ===== BODY STATE CLASSES ===== */
body.mobile-menu-open,
body.modal-open {
    overflow: hidden !important;
}

body.modal-open .floating-logo {
    opacity: 0.3;
    transform: scale(0.8);
    pointer-events: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .navbar {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .floating-logo {
        top: 20px;
        left: 20px;
    }
    
    .floating-logo img {
        width: 160px;
    }
    
    .about-content,
    .contact-content,
    .principles-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .gallery-grid, .designs-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex;
        right: 15px;
    }

    .logo {
        display: none;
    }
    
    .navbar {
        justify-content: flex-end;
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .floating-logo {
        position: fixed;
        top: 20px;
        left: 20px;
        right: auto;
        z-index: 1001;
        max-width: 130px;
    }
    
    .floating-logo img {
        width: 130px;
        padding: 10px;
        max-width: 100%;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .close-modal {
        right: 15px;
        top: 15px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .modal-thumbnails {
        bottom: 20px;
        padding: 12px;
        gap: 8px;
        max-width: 95%;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-nav {
        padding: 0 15px;
    }
    
    .gallery-tabs {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .gallery-grid, .designs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .floating-logo {
        top: 15px;
        left: 15px;
        max-width: 110px;
    }
    
    .floating-logo img {
        width: 110px;
        padding: 8px;
    }
    
    .mobile-menu-btn {
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .mobile-menu-sidebar {
        width: 90%;
        padding: 90px 20px 40px;
    }
    
    .mobile-menu-header {
        padding: 20px;
    }
    
    .mobile-menu-footer {
        padding: 20px;
    }
    
    .mobile-nav-menu a {
        font-size: 1.2rem;
        padding: 16px 15px;
    }
    
    h1 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .gallery-grid, .designs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .floating-logo {
        top: 12px;
        left: 12px;
        max-width: 100px;
    }
    
    .floating-logo img {
        width: 100px;
        padding: 6px;
    }
    
    .mobile-menu-btn {
        right: 8px;
        width: 46px;
        height: 46px;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2.5px;
    }
    
    .mobile-menu-sidebar {
        width: 95%;
        padding: 80px 15px 30px;
    }
    
    .navbar {
        padding: 0 8px;
    }
    
    .container {
        width: 100%;
        padding: 0 8px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .gallery-tab {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .category-filter, .subcategory-filter, .design-category {
        padding: 6px 15px;
        font-size: 12px;
    }
}

/* ===== GLOBAL FIXES ===== */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* Ensure no horizontal scrollbars */
html, body, .container, .section, header, footer, main {
    overflow-x: hidden !important;
}