/* --- RESET & VARIABLES --- */
:root {
    --primary: #0f172a;
    /* Deep Slate */
    --accent: #2563eb;
    /* Tech Blue */
    --accent-light: #eff6ff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-light-on-dark: #cbd5e1;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gold: #d97706;
    /* For the 25 Years Badge */
    --whatsapp: #25D366;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --radius: 12px;
    --transition: all 0.3s ease;
    --header-height: 90px;
    --topbar-height: 40px;
    --bottom-nav-height: 0px;
    /* 0 on desktop */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--topbar-height) + 20px);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: calc(var(--header-height) + var(--topbar-height));
}

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

ul {
    list-style: none;
}

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

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-whatsapp-form {
    background-color: var(--whatsapp);
    color: white;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-form:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary);
    color: var(--text-light-on-dark);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-mini {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-mini a {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-mini a:hover {
    color: var(--white);
}

/* --- HEADER & NAV --- */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--accent);
}

.years-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    color: #92400e;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
}

/* --- BOTTOM NAV (MOBILE) --- */
.bottom-nav {
    display: none;
    /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    height: 65px;
    z-index: 1100;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    gap: 4px;
    padding: 8px;
    width: 100%;
}

.bottom-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--accent);
}

/* --- FLOATING WHATSAPP --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)),
        url('https://images.unsplash.com/photo-1597872200969-2b65d56bd16b?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #60a5fa;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #cbd5e1;
}

/* --- SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:target {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-light);
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- SHOP SECTION --- */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shop-tab {
    padding: 8px 20px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.shop-tab.active,
.shop-tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    opacity: 1;
    transform: scale(1);
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-img {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.price {
    font-weight: 700;
    color: var(--primary);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
    background: var(--accent-light);
    color: var(--accent);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-sm:hover {
    background: var(--whatsapp);
    color: white;
}

/* --- ABOUT & FAQ SECTIONS --- */
.about-section {
    background: var(--primary);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.features-list i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large height */
    padding-bottom: 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* --- CONTACT SECTION (REDESIGNED & STYLIZED) --- */
.contact-section-redesigned {
    position: relative;
    /* Replaced static map with a sleek, deep gradient */
    background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Tech-Grid Pattern Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Minimalist geometric pattern */
    background-image: radial-gradient(#3b82f6 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.1;
    z-index: 1;
}

/* Ambient Glow Effect */
.contact-section-redesigned::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-section-redesigned::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.contact-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Form Card */
.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Contact Info Side */
.contact-info-side {
    color: white;
    padding-right: 20px;
}

.contact-info-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    /* Make it look clickable */
    text-decoration: none;
    color: white;
    border: 1px solid transparent;
}

.contact-info-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

/* Review Buttons */
.review-buttons-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.review-btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.review-btn-primary:hover {
    background: var(--white);
    color: var(--primary);
}

.review-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.review-btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}


/* --- FOOTER STYLES --- */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent);
    position: relative;
}

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

.footer-brand {
    padding-right: 20px;
}

.footer-logo-img {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-brand p {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links ul li a {
    color: #94a3b8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--accent);
}

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

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

.footer-contact-icon {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 3px;
}

.footer-contact-info h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 0.9rem;
}

.privacy-links {
    display: flex;
    gap: 20px;
}

.privacy-links a {
    font-size: 0.9rem;
    color: #64748b;
}

.privacy-links a:hover {
    color: var(--white);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Mobile logo size adjustment */
    .logo img {
        height: 50px;
    }

    :root {
        --header-height: 75px;
    }

    .contact-info-side h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --bottom-nav-height: 65px;
    }

    body {
        padding-bottom: var(--bottom-nav-height);
        /* Prevent content from being hidden behind nav */
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .mobile-toggle {
        display: none;
        /* Hidden because we have bottom nav now */
    }

    .nav-links {
        display: none !important;
        /* Force hide desktop nav */
    }

    .bottom-nav {
        display: flex;
        /* Show bottom nav on mobile */
    }

    /* Move floating whatsapp up so it clears the bottom nav */
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .years-badge {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 4px 10px;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    /* Hide EMAIL link entirely on mobile */
    .contact-mini .email-link {
        display: none;
    }

    /* Explicitly show phone */
    .contact-mini .phone-link span {
        display: inline-block;
    }

    .contact-mini a {
        font-size: 0.85rem;
    }
}

/* --- PAGE SPECIFIC STYLES --- */

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    color: #94a3b8;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #cbd5e1;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* Services Page */
.page-header-services {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1588508065123-287b28e013da?auto=format&fit=crop&q=80');
}

.service-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    border-left: 5px solid var(--accent);
    padding-left: 20px;
    font-family: 'Playfair Display', serif;
}

.service-card-lg {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card-lg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.service-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.service-card-lg:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 25px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.service-features li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #475569;
}

.service-features i {
    color: var(--whatsapp);
}

.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #1e40af 100%);
    border-radius: var(--radius);
    padding: 60px;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* About Page */
.page-header-about {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80');
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--accent-light);
}

.member-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .story-section {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-header {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: -50px;
    padding-bottom: 80px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.map-container {
    height: 400px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
        gap: 30px;
    }

    .info-card {
        order: 2;
    }

    .form-card {
        order: 1;
    }
}

/* CCTV Page */
.page-header-cctv {
    background-color: #0f172a;
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.5)), url('https://images.unsplash.com/photo-1557324232-b8917d3c3d63?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-light);
}

.price-card.featured {
    border: 2px solid var(--accent);
}

.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px;
    letter-spacing: 1px;
}

.pkg-name {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pkg-price {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pkg-features {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.pkg-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pkg-features li i {
    color: var(--whatsapp);
    font-size: 1.1rem;
    margin-top: 3px;
}

.tech-explain {
    background: #1e293b;
    color: white;
    border-radius: var(--radius);
    padding: 60px;
    margin-top: 80px;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.tech-item h4 {
    color: #60a5fa;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tech-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

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

/* Gaming Page */
:root {
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --dark-bg: #0b0e14;
    --card-bg: #151a23;
}

body.gaming-page {
    background-color: var(--dark-bg);
    color: #e2e8f0;
}

.btn-glow {
    background: linear-gradient(45deg, var(--accent), var(--neon-purple));
    color: white;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
    border: none;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.7);
    transform: translateY(-2px);
}

.gaming-hero {
    background: linear-gradient(to right, rgba(11, 14, 20, 0.9), rgba(11, 14, 20, 0.6)), url('https://images.unsplash.com/photo-1587202372775-e229f172b9d7?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
    /* Adjust for spacing if needed */
}

.gaming-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.build-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2d3748;
    transition: transform 0.3s ease;
    position: relative;
}

.build-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.build-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.build-content {
    padding: 25px;
}

.build-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
}

.specs-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.specs-list i {
    color: var(--neon-blue);
}

.student-section {
    background: #1a202c;
    margin-top: 50px;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Privacy Policy Page */
.policy-content {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.policy-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 40px;
    display: block;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 10px;
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-section li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px;
    }
}