/* ================================================
   BLISTAR.NU - Antigravity Design System
   Premium, Fast, Stable, Selling
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@300;500;700&display=swap');

:root {
    --primary-color: #2dad28;
    /* Blistar Green */
    --primary-dark: #1e8e1a;
    --accent-color: #00d2ff;
    /* Tech Blue for AI/Modern touches */
    --dark-bg: #0a0a0a;
    /* Deep Black */
    --dark-surface: #121212;
    /* Card BG */
    --light-bg: #ffffff;
    --light-surface: #f8f9fa;
    --text-main: #1a1a1a;
    --text-light: #f0f0f0;
    --text-muted: #888888;
    --border-color: #e0e0e0;
    --border-dark: #333333;

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(45, 173, 40, 0.3);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--light-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--text-light);
}

.section-dark .section-desc {
    color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-white {
    display: inline-flex;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 4px;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* ===== HEADER ===== */
#topbar {
    background: #111;
    color: #aaa;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

#topbar .container {
    display: flex;
    justify-content: space-between;
}

#topbar i {
    margin-right: 6px;
    color: var(--primary-color);
}

#topbar span {
    margin-right: 20px;
}

#header {
    position: relative;
    z-index: 1000;
    padding: 12px 0;
    background: linear-gradient(90deg, #1e8e1a 0%, #2dad28 60%, #24a31e 100%);
    border-bottom: none;
    backdrop-filter: none;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

#logo img {
    height: 42px;
    /* Reduced 20% from 50px */
}

/* Navigation */
#main_menu ul.sf-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

#main_menu ul.sf-menu>li>a {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

#main_menu ul.sf-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Active menu item: cleaner, more "premium" than a full background fill */
#main_menu ul.sf-menu>li.active>a {
    background: transparent;
    position: relative;
}

#main_menu ul.sf-menu>li.active>a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
}

#main_menu ul.sf-menu>li>a.highlight {
    background: #9b59b6;
    color: #fff;
}

#main_menu ul.sf-menu>li>a.highlight:hover {
    background: #8e44ad;
}

/* Windows 11 Button in Nav */
#main_menu ul.sf-menu>li>a.btn-win11-nav {
    background: #4aba44;
    color: #fff;
    font-weight: 700;
}

#main_menu ul.sf-menu>li>a.btn-win11-nav:hover {
    background: #3da837;
}

/* Dropdown */
.has-child {
    position: relative;
}

ul.nav-child {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 240px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.has-child:hover ul.nav-child {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

ul.nav-child li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

ul.nav-child li:last-child a {
    border-bottom: none;
}

ul.nav-child li a:hover {
    background: #222;
    color: var(--primary-color);
    padding-left: 25px;
}

ul.nav-child li a.new::after {
    content: 'NY';
    font-size: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 8px;
}

/* ===== HERO SECTION (Antigravity) ===== */
/* ===== HERO - FULL WIDTH ===== */
#slideshow {
    min-height: calc(100vh - 100px);
    background: linear-gradient(165deg, #1e8c19 0%, #22a61e 40%, #1a7516 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg.jpg') center/cover;
    opacity: 0.15;
}

#slideshow .container {
    position: relative;
    z-index: 2;
    padding: 60px 24px 80px;
    width: 100%;
}

/* Hero Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 40px;
    min-height: 70vh;
}

/* Corner Boxes */
.hero-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #fff;
}

.hero-box img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.hero-box.right {
    justify-self: end;
    text-align: right;
    flex-direction: row-reverse;
}

/* Hero Center */
.hero-center {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
}

.hero-center h1 {
    color: #fff;
    font-weight: 800;
    font-style: italic;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.hero-center h2 {
    color: #052e03;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 40px;
}

/* Arrows */
.hero-center .arrows {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
}

.hero-center .arrow {
    width: 60px;
    opacity: 0.7;
}

.flip-h {
    transform: scaleX(-1);
}

.rot-90 {
    transform: rotate(90deg);
}

.rot-n90 {
    transform: rotate(-90deg);
}

/* RED CTA Button */
.btn-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #e74c3c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.5);
    color: #fff;
}

/* If legacy markup contains arrow wrappers, keep them hidden for a cleaner hero */
.hero-center .arrows { display: none; }

/* ===== ALERT BAR ===== */
.win11-alert-bar {
    background: #0078d4 !important;
    color: #fff;
    padding: 15px 0;
    border-bottom: none;
    width: 100%;
}

.alert-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.alert-message { flex: 1; }

.alert-icon {
    font-size: 24px;
    color: #ffc107;
}

.alert-message strong {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    margin-right: 5px;
    color: #fff;
}

.alert-message span {
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

.btn-small {
    background: #fff;
    color: #0078d4;
    padding: 10px 24px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.btn-small:hover {
    background: #f0f0f0;
    text-decoration: none;
    color: #005a9e;
}

/* ===== WEBDESIGN SECTION ===== */
.webdesign-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.webdesign-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
}

.webdesign-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== SERVICES GRID ===== */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-dark .section-header p {
    color: #aaa;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background: var(--dark-surface);
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-dark .service-box {
    background: #151515;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(45, 173, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 24px;
}

.service-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-box p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 10px;
}

/* Highlight Box (Windows 11) */
.highlight-box {
    background: linear-gradient(145deg, #0078d4 0%, #005a9e 100%);
    border: none;
}

.highlight-box h3,
.highlight-box p,
.highlight-box .link-arrow,
.highlight-box i {
    color: #fff;
}

.highlight-box .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== PRICING ===== */
.pricing-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-dark.pricing-section {
    background: #0a0a0a;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    width: 350px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.section-dark .pricing-card {
    background: #151515;
    border: 1px solid #333;
    color: #fff;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.section-dark .pricing-card ul li {
    border-color: #333;
    color: #aaa;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px;
}

/* ===== GALLERY - FULL WIDTH BACKGROUND ===== */
.gallery-section {
    padding: 100px 0;
    background: #111;
    color: #fff;
}

.gallery-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.gallery-section .section-header p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 100px 0;
    background: #fff;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumb:hover .play-icon {
    opacity: 1;
}

.video-thumb .play-icon i {
    color: #fff;
    font-size: 20px;
    margin-left: 3px;
}

/* ===== DATACENTER - FULL WIDTH DARK ===== */
.datacenter-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
}

.datacenter-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.datacenter-section .section-desc {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 50px;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.datacenter-card {
    border-radius: 12px;
    overflow: hidden;
    background: #222;
}

.datacenter-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.datacenter-caption {
    padding: 24px;
}

.datacenter-caption h3 {
    color: #fff;
    margin-bottom: 8px;
}

.datacenter-caption p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

.datacenter-brand {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.datacenter-brand img {
    height: 50px;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.datacenter-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.datacenter-section .buttons {
    text-align: center;
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== CONTACT - SPLIT LAYOUT ===== */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.contact-info ul li i {
    width: 20px;
    color: #22a61e;
}

.contact-info ul li a {
    color: #22a61e;
}

.contact-highlight {
    margin-top: 30px;
    padding: 24px;
    background: #f8fff8;
    border-left: 4px solid #22a61e;
    border-radius: 0 8px 8px 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #22a61e;
}

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

/* ===== FOOTER ===== */
#footer {
    background: #050505;
    color: #888;
    padding: 80px 0 30px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #888;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visuals {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    #nav-toggle {
        display: block;
        color: #fff;
        font-size: 24px;
    }

    #main_menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: #0a0a0a;
        padding: 20px;
        border-bottom: 1px solid #333;
        display: none;
    }

    #main_menu.open {
        display: block;
    }

    #main_menu ul.sf-menu {
        flex-direction: column;
    }

    ul.nav-child {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .has-child.active ul.nav-child {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-text-main h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
    }
}

.btn-win11 {
    background: #0078d4;
}

.btn-win11:hover {
    background: #005a9e;
}

/* ===== FOOTER ===== */
#footer {
    background: #222;
    color: #999;
    padding: 60px 0 40px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

#footer h3 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

#footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

#footer ul li:last-child {
    border-bottom: none;
}

#footer a {
    color: #999;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #fff;
    padding-left: 5px;
}

#footer .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .contact-info i {
    color: #2dad28;
    width: 20px;
}

/* Bottom Bar */
#bottom {
    background: #111;
    padding: 20px 0;
    font-size: 12px;
    color: #666;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

#bottom a {
    color: #888;
}

#bottom a:hover {
    color: #fff;
}

.bottom-links a {
    margin-left: 20px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1020px) {
    #header {
        height: auto;
        padding: 15px 0;
    }

    #header .container {
        flex-wrap: wrap;
    }

    #logo {
        flex: 1;
    }

    #logo a {
        line-height: normal;
    }

    #nav-toggle {
        display: block;
    }

    #main_menu {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    #main_menu.open {
        display: block;
    }

    ul.sf-menu {
        flex-direction: column;
    }

    ul.sf-menu>li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    ul.sf-menu>li>a {
        padding: 15px 20px;
        height: auto;
        line-height: 1.4;
        color: #333;
    }

    ul.sf-menu>li>a:hover,
    ul.sf-menu>li.active>a {
        background: #f5f5f5;
    }

    ul.sf-menu li ul.nav-child {
        position: static;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
    }

    /* Hero responsive */
    #slideshow {
        min-height: auto;
        padding: 40px 0;
    }

    #slideshow .container {
        height: auto;
        position: static;
    }

    .hero-box {
        position: static;
        max-width: 100%;
        margin-bottom: 25px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-box.top-right,
    .hero-box.bottom-right {
        text-align: center;
    }

    .hero-center {
        position: static;
        transform: none;
        margin: 30px 0;
    }

    .hero-center h1 {
        font-size: 42px;
    }

    .hero-center h2 {
        font-size: 28px;
    }

    .hero-center .arrow {
        display: none;
    }

    .services-grid {
        gap: 20px;
    }

    .service-box {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    #slideshow {
        min-height: 350px;
        padding: 40px 0;
    }

    #slideshow h1 {
        font-size: 36px;
    }

    #slideshow h2 {
        font-size: 24px;
    }

    .hero-features {
        flex-direction: column;
        gap: 25px;
    }

    .hero-feature {
        max-width: 100%;
    }

    .service-box {
        flex: 1 1 100%;
    }

    .pricing-card {
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
    }

    .contact-grid {
        flex-direction: column;
    }

    .footer-row {
        flex-direction: column;
    }

    .footer-col {
        min-width: 100%;
    }

    .bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .bottom-links {
        margin-top: 10px;
    }

    .bottom-links a {
        margin: 0 10px;
    }

    .alert-flex {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    #slideshow h1 {
        font-size: 28px;
    }

    #slideshow h2 {
        font-size: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 20px;
    }

    .btn {
        display: block;
        text-align: center;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

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

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

.mt-0 {
    margin-top: 0;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Clear */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ===== MAIN WRAPPER ===== */
#page_wrapper {
    min-height: calc(100vh - 200px);
}

.inner-page #page_wrapper {
    padding-top: 0;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    background: linear-gradient(145deg, #1e8c19 0%, #24a31e 50%, #1a7516 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg.jpg') center/cover;
    opacity: 0.1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero .hero-lead {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 60px 0;
    background: #fff;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 40px;
}

.content-block h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.content-block p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block p a {
    color: var(--primary-color);
    font-weight: 600;
}

.content-block p a:hover {
    text-decoration: underline;
}

/* ===== PLACEHOLDERS ===== */
.gallery-placeholder,
.image-placeholder {
    max-width: 900px;
    margin: 30px auto 40px;
}

.placeholder-box {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    color: #6c757d;
}

.placeholder-box i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #adb5bd;
    display: block;
}

.placeholder-box span {
    font-size: 14px;
    font-weight: 500;
}

/* ===== PORTFOLIO GALLERY ===== */
.portfolio-gallery {
    max-width: 1000px;
    margin: 40px auto 50px;
}

.gallery-title {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 25px;
}

.gallery-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 50px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ===== INLINE PRICING ===== */
.pricing-section-inline {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}

.pricing-section-inline h2 {
    margin-bottom: 30px;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-header {
    padding: 25px 20px;
    color: #fff;
    position: relative;
}

.price-header.bas { background: #6c757d; }
.price-header.standard { background: var(--primary-color); }
.price-header.pro { background: #333; }

.price-header .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.price-header h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.price-header .price {
    font-size: 2rem;
    font-weight: 800;
}

.price-card ul {
    list-style: none;
    padding: 25px 20px;
    margin: 0;
    text-align: left;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-card .btn-primary {
    margin: 0 20px 25px;
    width: calc(100% - 40px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    max-width: 900px;
    margin: 50px auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--primary-color);
    margin-top: 3px;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA BLOCK ===== */
.cta-block {
    background: linear-gradient(145deg, #1e8c19 0%, #24a31e 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin: 50px auto;
    max-width: 800px;
}

.cta-block h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-block p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-block .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-block .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.cta-block .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-block .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-block .btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* ===== VIDEO SERVICES GRID ===== */
.video-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 50px;
}

.video-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.video-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.video-service-card .service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(45, 173, 40, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    z-index: 2;
}

.video-service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.video-service-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
    margin: 0;
}

.video-service-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== EQUIPMENT STRIP ===== */
.equipment-strip {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

.equipment-strip h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.equipment-strip h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.equipment-tags span {
    background: rgba(45, 173, 40, 0.15);
    border: 1px solid rgba(45, 173, 40, 0.3);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}

.process-section h2 {
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #e9ecef;
    z-index: 0;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(45, 173, 40, 0.3);
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.95rem;
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile responsive video */
@media (max-width: 991px) {
    .video-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        flex: 0 0 calc(33% - 20px);
    }
}

@media (max-width: 576px) {
    .video-services-grid {
        grid-template-columns: 1fr;
    }
    .process-step {
        flex: 0 0 100%;
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin: -30px auto 50px;
    max-width: 900px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ===== PLATFORMS GRID ===== */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 50px;
}

.platform-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.platform-card.facebook:hover { border-color: #1877f2; }
.platform-card.instagram:hover { border-color: #e4405f; }
.platform-card.linkedin:hover { border-color: #0a66c2; }
.platform-card.tiktok:hover { border-color: #000; }

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #fff;
}

.facebook .platform-icon { background: #1877f2; }
.instagram .platform-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.linkedin .platform-icon { background: #0a66c2; }
.tiktok .platform-icon { background: #000; }

.platform-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.platform-card > p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.platform-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.platform-card ul li {
    padding: 6px 0;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #f0f0f0;
}

/* ===== SERVICES CHECKLIST ===== */
.services-checklist {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
}

.services-checklist h2 {
    margin-bottom: 30px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.checklist-item {
    display: flex;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s ease;
}

.checklist-item:hover {
    transform: translateX(5px);
}

.checklist-item > i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.checklist-item p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Mobile responsive SMM */
@media (max-width: 991px) {
    .stats-bar {
        flex-wrap: wrap;
        gap: 25px;
    }
    .stat-item {
        flex: 0 0 40%;
    }
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-bar {
        padding: 30px 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SEO SERVICES GRID ===== */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 50px;
}

.seo-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.seo-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.seo-service-card .service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(45, 173, 40, 0.15);
    font-family: var(--font-heading);
}

.seo-service-card > i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.seo-service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.seo-service-card > p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-service-card ul li {
    padding: 5px 0;
    font-size: 0.8rem;
    color: #555;
    padding-left: 15px;
    position: relative;
}

.seo-service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== OFFER BOX ===== */
.offer-box {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed var(--primary-color);
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
}

.offer-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-content h3 i {
    margin-right: 10px;
}

.offer-content p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile responsive SEO */
@media (max-width: 991px) {
    .seo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .seo-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsive for new components */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-table {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .price-card.featured {
        transform: none;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cta-block {
        padding: 35px 25px;
    }
    .cta-block h3 {
        font-size: 1.4rem;
    }
}

/* ===== INNER PAGE HEADER ===== */
#page_header {
    background: rgba(36, 163, 30, 0.19);
    padding: 120px 0 40px;
    text-align: center;
}

#page_header h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    color: #333;
    font-size: 14px;
    margin-top: 15px;
}

.breadcrumbs a {
    color: #333;
}

.breadcrumbs a:hover {
    color: #fff;
}

/* ===== CONTENT PAGE ===== */
.page-content {
    padding: 50px 0;
    background: #fff;
}

.page-content h2 {
    margin-top: 30px;
}

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content ul li {
    margin-bottom: 10px;
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    text-align: center;
}

.cookie-notice p {
    margin: 0 0 15px;
    font-size: 14px;
}

.cookie-notice .btn {
    margin: 0 10px;
}

.cookie-notice a {
    color: #2dad28;
}

/* ===== DATACENTER / WEBBHOTELL ===== */
.datacenter-section {
    padding: 70px 0;
    background: #f7f7f7;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.datacenter-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.datacenter-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.datacenter-caption {
    padding: 18px 18px 20px;
}

.datacenter-caption h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.datacenter-caption p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.datacenter-brand {
    margin-top: 25px;
    text-align: center;
}

.datacenter-brand img {
    max-width: 220px;
    height: auto;
    opacity: 0.95;
}

.datacenter-brand .small {
    margin-top: 10px;
    color: #777;
    font-size: 13px;
}

@media (max-width: 991px) {
    .datacenter-grid {
        grid-template-columns: 1fr;
    }

    .datacenter-card img {
        height: 240px;
    }
}
/* ===== QUICK LINKS (site structure) ===== */
.quicklinks-section {
    padding: 40px 0;
}
.quicklinks-section .services-quicklinks {
    background: var(--dark-surface);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.quicklinks-section .services-quicklinks h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-light);
}
.quicklinks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.quicklinks-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.quicklinks-grid a:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.16);
}

/* ===== MOBILE NAV TOGGLE ===== */
#nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

#nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

#nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 991px) {
    #nav-toggle {
        display: flex;
    }
    
    #main_menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        padding: 80px 20px 30px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    #main_menu.open {
        left: 0;
    }
    
    #main_menu ul.sf-menu {
        flex-direction: column;
        gap: 0;
    }
    
    #main_menu ul.sf-menu > li > a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #333;
    }
    
    ul.nav-child {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #222;
        margin: 0;
        padding: 0;
    }
    
    .page-hero {
        padding: 40px 0 35px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-block {
        margin-bottom: 30px;
    }
    
    .content-block h2 {
        font-size: 1.3rem;
    }
    
    .placeholder-box {
        padding: 40px 20px;
    }
    
    .placeholder-box i {
        font-size: 36px;
    }
}


/* ===== FOOTER ===== */
#footer {
    background: #0a0a0a;
    color: #aaa;
    padding: 60px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 30px;
}

.footer-col.about {
    padding-right: 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #888;
    font-size: 0.85rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Footer responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-col.about {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    .footer-col.about .footer-logo {
        margin: 0 auto 15px;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-col h4::after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    #footer {
        padding: 40px 0 0;
    }
}


/* ===== PRICING PREVIEW (inline cards) ===== */
.pricing-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 40px auto;
}

.pricing-preview .pricing-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-preview .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-preview .pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-preview .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-preview .pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.pricing-preview .pricing-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-preview .pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.pricing-preview .pricing-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Service list styling */
.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

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

.service-list li:last-child {
    border-bottom: none;
}

/* Pricing preview responsive */
@media (max-width: 768px) {
    .pricing-preview {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    .pricing-preview .pricing-card.featured {
        transform: none;
    }
}


/* ===== CONTACT PAGE ===== */
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info .info-block {
    margin-bottom: 30px;
}

.contact-info .info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info .info-block h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.contact-info .info-block h3 i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-value a {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.85rem;
    color: #888;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 25px;
}

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

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-form .checkbox input {
    width: auto;
    margin-top: 3px;
}

.contact-form .checkbox label {
    font-weight: 400;
    font-size: 0.85rem;
    color: #666;
}

/* Areas Grid */
.service-areas {
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    text-align: left;
}

.areas-grid .area {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.areas-grid .area h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.areas-grid .area h4 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.areas-grid .area p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.map-section {
    margin: 40px 0;
}

.quick-contact {
    text-align: center;
    background: linear-gradient(145deg, #f0fff0 0%, #e8f5e9 100%);
    border-radius: 12px;
    padding: 30px;
}

/* Contact responsive */
@media (max-width: 991px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
