:root {
    --primary-blue: #0066FF;
    --light-blue: #00B4D8;
    --dark-blue: #003D82;
    --accent-cyan: #00F5FF;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-color: #1a1a1a;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 102, 255, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --success-green: #00C853;
    --error-red: #FF1744;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

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

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--light-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.2rem;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn i {
    margin-right: 8px;
}

.btn:disabled {
    background-color: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    animation: pulse-btn 2s infinite;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
    animation: none;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

.btn-primary i {
    margin-right: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: scale(1.2) rotate(15deg);
}

@keyframes pulse-btn {
    0% {
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 102, 255, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.5s ease;
}

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

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success-green);
    color: var(--success-green);
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid var(--error-red);
    color: var(--error-red);
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    border-left: 4px solid var(--light-blue);
    color: var(--dark-blue);
}

/* ===== HEADER - FIXED FOR MOBILE ===== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    min-height: 50px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.logo-icon {
    min-width: 120px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
}

.logo-icon img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text h1 {
        font-size: 1.15rem !important;
        line-height: 1.1;
        margin-bottom: 1px;
        font-weight: 700 !important;
    }
    
    .logo-text p {
        font-size: 0.75rem !important;
        line-height: 1;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* ===== NAVIGATION ===== */
nav {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

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

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 120px;
    padding-bottom: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    max-width: 100%;
    overflow: hidden;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper {
    max-width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    max-width: 100%;
}

.swiper-slide {
    max-width: 100%;
}

.swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background-color: var(--light-blue);
    opacity: 1;
}

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

.about-content > div:first-child {
    animation: fadeInLeft 0.8s ease;
}

.about-content .about-slider {
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.about-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-blue);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 42px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.service-icon i {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* ===== GALLERY SECTION ===== */
#gallery {
    min-height: 200px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-tab {
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    color: var(--dark-blue);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-tab:hover {
    border-color: var(--light-blue);
    background-color: var(--light-gray);
}

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

.gallery-tab i {
    font-size: 1.2rem;
}

.gallery-content-wrapper {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.gallery-content-wrapper.visible {
    display: block;
}

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

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

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    position: relative;
    box-shadow: var(--shadow);
    cursor: pointer;
    background-color: var(--medium-gray);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-item.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    transition: var(--transition);
}

.gallery-item.video-item::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 50px;
    opacity: 0.9;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7);
    transition: var(--transition);
    z-index: 2;
}

.gallery-item.video-item:hover::before {
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.gallery-item.video-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.gallery-item.loaded:hover .gallery-item-caption {
    transform: translateY(0);
}

.gallery-item-caption p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-message {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 180, 216, 0.05));
    border-radius: var(--border-radius);
    margin-top: 30px;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease;
}

.gallery-message i {
    font-size: 60px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 102, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 102, 255, 0.3);
    }
}

.gallery-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 102, 255, 0.1);
    display: inline-block;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}

.gallery-link:hover {
    color: var(--dark-blue);
    background-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.gallery-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.gallery-link:hover::after {
    width: 100%;
}

.gallery-message p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.gallery-cta-container {
    margin-top: 20px;
    text-align: center;
}

.gallery-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
    min-width: 250px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.gallery-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.gallery-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.gallery-cta-btn:hover::before {
    left: 100%;
}

.gallery-cta-btn .btn-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-cta-btn .btn-subtext {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.gallery-cta-btn i {
    margin-top: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.gallery-cta-btn:hover i {
    transform: translateX(5px);
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(87, 166, 195, 0.2);
}

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

.form-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 5px;
    font-style: italic;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark-blue), #001a3d);
    color: var(--white);
    padding: 50px 0 25px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan), var(--primary-blue));
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-text h1 {
    color: #FFFFFF !important;
    font-size: 2.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9) !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.footer-logo .logo-text h1 {
    color: #FFFFFF !important;  
    font-size: 2.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9) !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.2;
    /* Remove any gradient effects */
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.footer-tagline {
    color: var(--accent-cyan) !important;
    font-size: 1rem !important;
    margin-bottom: 10px;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.87rem;
    margin-bottom: 0;
}

.footer-links h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 10px;
}

.footer-contact-column h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item-footer i {
    color: var(--accent-cyan);
    font-size: 14px;
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item-footer p,
.contact-item-footer a {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-footer a:hover {
    color: var(--accent-cyan);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-blue);
    color: white !important;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

.map-link:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue) !important;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-form h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group.half {
    margin-bottom: 0;
}

.footer-form .btn-primary {
    padding: 10px;
    margin-top: 5px;
    font-size: 0.9rem;
    width: 100%;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-content img {
    max-width: 70vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--light-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lightbox-content img {
        max-width: 70vw;
        max-height: 50vh;
    }
    
    .lightbox-content video {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .close-lightbox {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .lightbox-content img {
        max-width: 85vw;
        max-height: 45vh;
    }
    
    .lightbox-content video {
        max-width: 98vw;
        max-height: 80vh;
    }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Adjust scroll padding for thinner header */
    html {
        scroll-padding-top: 60px;
    }
    
    /* Make header thinner */
    header {
        padding: 0 !important;
        height: auto;
    }
    
    .header-container {
        padding: 6px 0 !important;
        min-height: 45px;
        position: relative;
    }
    
    /* Smaller logo for mobile */
    .logo {
        gap: 6px;
        flex: 1;
        justify-content: flex-start;
    }
    
    .logo-icon {
        min-width: 60px !important;
        height: 35px !important;
    }
    
    .logo-icon img {
        max-width: 60px !important;
        max-height: 35px !important;
    }
    
    .logo-text h1 {
        font-size: 0.95rem !important;
        line-height: 1.1;
        margin-bottom: 1px;
    }
    
    .logo-text p {
        font-size: 0.65rem !important;
        line-height: 1;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Mobile navigation - FIXED POSITIONING */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 8px;
        font-size: 1.3rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--dark-blue);
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-btn:hover {
        color: var(--primary-blue);
        transform: translateY(-50%) scale(1.1);
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
        z-index: 999;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 80px;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 40px;
    }
    
    nav li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideInLeft 0.4s ease forwards;
        opacity: 0;
    }
    
    nav.active li:nth-child(1) { animation-delay: 0.1s; }
    nav.active li:nth-child(2) { animation-delay: 0.2s; }
    nav.active li:nth-child(3) { animation-delay: 0.3s; }
    nav.active li:nth-child(4) { animation-delay: 0.4s; }
    nav.active li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    nav a {
        color: var(--white);
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }
    
    nav a:after {
        background: var(--accent-cyan);
    }
    
    /* Adjust hero section for thinner header */
    .hero {
        padding-top: 70px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem !important;
    }
    
    .hero-slider,
    .about-slider {
        height: 250px !important;
    }
    
    /* Adjust sections */
    .section {
        padding: 50px 0 !important;
    }
    
    section {
        scroll-margin-top: 50px !important;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Contact form */
    .contact-form {
        padding: 25px;
    }
    
    /* Gallery */
    .gallery-link {
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .gallery-cta-btn {
        padding: 18px 30px;
        min-width: 220px;
    }
    
    .gallery-cta-btn .btn-text {
        font-size: 1.3rem;
    }
    
    /* Hero buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    /* Adjust scroll padding for very small screens */
    html {
        scroll-padding-top: 55px;
    }
    
    /* Even thinner header */
    .header-container {
        padding: 4px 0 !important;
        min-height: 40px;
        position: relative;
    }
    
    .logo-icon {
        min-width: 50px !important;
        height: 30px !important;
    }
    
    .logo-icon img {
        max-width: 50px !important;
        max-height: 30px !important;
    }
    
    .logo-text h1 {
        font-size: 0.85rem !important;
    }
    
    .logo-text p {
        font-size: 0.6rem !important;
    }
    
    .mobile-menu-btn {
        font-size: 1.1rem !important;
        padding: 6px !important;
        width: 32px;
        height: 32px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Adjust hero */
    .hero {
        padding-top: 60px !important;
        padding-bottom: 35px !important;
    }
    
    .hero-text h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-text p {
        font-size: 0.95rem !important;
    }
    
    section {
        scroll-margin-top: 45px !important;
    }
    
    /* Grid layouts */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Typography */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem !important;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Gallery CTA button */
    .gallery-cta-btn {
        min-width: 200px;
        padding: 16px 25px;
    }
    
    .gallery-cta-btn .btn-text {
        font-size: 1.2rem;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }
}
