/* ========================================
   PREMIUM WEBSITE STYLES - RMS
   Premium Color Scheme & Modern Design
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary-color: #1a2332;        /* Deep Navy Blue */
    --secondary-color: #2d3e50;      /* Slate Gray */
    --accent-gold: #d4af37;          /* Premium Gold */
    --accent-blue: #0066cc;          /* Royal Blue */
    --text-dark: #1a1a1a;            /* Rich Black */
    --text-light: #5a6c7d;           /* Muted Gray */
    --bg-light: #f8f9fa;             /* Soft White */
    --bg-dark: #0f1419;              /* Charcoal */
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-blue: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo img {
    height: 55px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-placeholder {
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
}

.logo-placeholder i {
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    margin-top: 80px;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(45, 62, 80, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%231a2332" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92), rgba(0, 76, 153, 0.88)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%230066cc" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.92), rgba(101, 67, 33, 0.88)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%238B4513" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(4) {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.92), rgba(46, 125, 50, 0.88)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23228B22" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--white);
}

.slide-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 1s ease;
}

.btn-primary {
    display: inline-block;
    padding: 16px 42px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    animation: fadeInUp 1.2s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.6rem;
    padding: 18px 22px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border-radius: 6px;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--accent-gold);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: var(--accent-gold);
    width: 36px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SECTION STYLES
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-text p strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-description {
    margin-top: 2rem;
    line-height: 1.9;
    color: var(--text-dark) !important;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PRODUCTS SECTION
======================================== */
.products {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-gold);
    color: var(--primary-color);
}

.product-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose {
    padding: 10px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.8rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--primary-color);
    transform: rotateY(360deg);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   HIGHLIGHTS SECTION
======================================== */
.highlights {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.highlights::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 1440 320"><path fill="rgba(212,175,55,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.highlight-card {
    padding: 2.5rem;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-number {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 1.15rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--accent-gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   CLIENTS SECTION
======================================== */
.clients {
    padding: 100px 0;
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

.client-logo {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 140px;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-placeholder {
    font-weight: 600;
    color: var(--text-light);
    padding: 1rem;
    font-size: 1.05rem;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h4 {
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-links a:hover {
    transform: translateY(-4px);
    background: var(--gradient-gold);
    color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--accent-gold);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--gradient-gold);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
}

.footer p {
    margin: 0.8rem 0;
    font-size: 0.95rem;
}

.footer i {
    color: var(--accent-gold);
    animation: heartbeat 1.5s ease infinite;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 3rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.4s ease;
        border-top: 2px solid var(--accent-gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 600px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-btn {
        padding: 14px 18px;
        font-size: 1.3rem;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .highlight-number {
        font-size: 2.8rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }
}
/* ============================================================= */
/* NEW ADDITIONS - PROFESSIONAL FOOTER, FLOATING BUTTONS, ETC   */
/* ============================================================= */

.page-hero {
    height: 500px;
    background: linear-gradient(rgba(26,35,50,0.88), rgba(26,35,50,0.92)), url('https://images.unsplash.com/photo-1519389951973-5c2f8c2c2d4c?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}
.page-hero h1 { font-size: 3.6rem; margin-bottom: 1rem; font-weight: 700; }
.page-hero p { font-size: 1.35rem; max-width: 800px; margin: 0 auto; opacity: 0.95; }

/* Floating Social + Back to Top */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility:hidden;
    transition: all 0.4s ease;
}
.floating-buttons.show { opacity: 1; visibility: visible; }
.social-float, .back-to-top {
    width: 50px; height: 50px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    transition: var(--transition);
}
.social-float:hover, .back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}
.back-to-top { background: var(--primary-color); color: white; }
.social-float.whatsapp { background: #25d366; color: white; }

/* Professional Footer */
.footer-main {
    background: #0f1419;
    color: #aaa;
    padding: 90px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.35rem;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
    color: #777;
    font-size: 0.92rem;
}
.footer-bottom i { color: #d4af37; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero { height: 400px; }
    .page-hero h1 { font-size: 2.5rem; }
    .floating-buttons { right: 15px; bottom: 80px; }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: center;
}
@media (max-width: 992px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .clients-grid { grid-template-columns: 1fr; }
}


/* ============================================================= */
/* MODERN CONTACT SECTION - EXACTLY LIKE YOUR DESIGN            */
/* ============================================================= */

.contact-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 120px 0 100px;
    margin-top: 80px;
}
.contact-modern h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}
.contact-modern .divider {
    width: 80px;
    height: 5px;
    background: #facc15;
    margin: 0 auto 60px;
    border-radius: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-info-side .info-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 16px;
    border-left: 6px solid #facc15;
    margin-bottom: 24px;
}
.contact-info-side h3 {
    color: #facc15;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}
.contact-info-side .highlight {
    font-size: 1.4rem;
    color: #facc15;
    font-weight: 600;
    margin: 8px 0 0;
}

.contact-form-side {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid #475569;
    border-radius: 12px;
    color: white;
    font-size: 1.05rem;
    transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}
.btn-send {
    background: #facc15;
    color: #0f172a;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}
.btn-send:hover {
    background: #eab308;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
}

.map-section {
    margin-top: 100px;
    text-align: center;
}
.map-section h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
}
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-modern h2 { font-size: 2.5rem; }
}
@media (max-width: 576px) {
    .contact-modern { padding: 80px 0 60px; }
    .contact-info-side .info-card { padding: 24px; }
    .contact-form-side { padding: 30px; }
}

/* Floating Social + Back to Top */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.floating-buttons.show {
    opacity: 1;
    visibility: visible;
}
.social-float, .back-to-top {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    transition: var(--transition);
}
.social-float:hover, .back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}
.back-to-top {
    background: var(--primary-color);
    color: white;
}
.social-float.whatsapp {
    background: #25d366;
    color: white;
}

/* ========== FLOATING SOCIAL BUTTONS & BACK TO TOP (FIXED) ========== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.floating-buttons.show {
    opacity: 1;
    visibility: visible;
}
.social-float, .back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.social-float:hover, .back-to-top:hover {
    transform: translateY(-5px);
}
.social-float:nth-child(1) { background: #1877F2; } /* Facebook */
.social-float:nth-child(2) { background: #64d641; } /* Instagram */
.social-float.whatsapp { background: #25D366; }
.social-float:nth-child(4) { background: #CD201F; } /* YouTube */
.back-to-top {
    background: #1a1a2e;
}
.back-to-top i {
    color: #FFD700;
    font-size: 24px;
}

/* About Section - Force Image on Right */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    .about-image { order: -1; }
}

/* Reusable Hero Base Style */
.page-hero {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 130px 20px;
    text-align: center;
    color: white;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* if header is fixed */
    position: relative;
}

/* Dark overlay for perfect text readability */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
   
    z-index: 1;
}
.page-hero > .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 0 5px 20px rgba(123, 156, 160, 0.8);
}
.page-hero p {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.96;
    line-height: 1.6;
}

/* Specific Backgrounds */


.multi-bg-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}
