/* ===== FRANCMATIC TECHNOLOGIES - NUGSOFT-INSPIRED STYLESHEET ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Palette - Navy/Blue theme like nugsoft */
    --primary: #0a1628;
    --primary-light: #152238;
    --secondary: #1e73be;
    --secondary-light: #3a8fd4;
    --secondary-dark: #155a96;

    /* Accent Colors */
    --accent-teal: #5a9fb8;
    --accent-orange: #d4855a;
    --accent-gold: #c9a84c;
    --accent-green: #5aab6e;

    /* Neutrals */
    --dark: #1a1a2e;
    --gray-900: #2d2d44;
    --gray-700: #555;
    --gray-500: #777;
    --gray-300: #bbb;
    --gray-100: #e8ecf1;
    --light: #f5f7fa;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a1628 0%, #152238 100%);
    --gradient-blue: linear-gradient(135deg, #1e73be 0%, #155a96 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(21, 34, 56, 0.88) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 8px 25px rgba(30, 115, 190, 0.3);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== TOP INFO BAR ===== */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.top-bar-left li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--secondary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 115, 190, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    transform: translateY(-2px);
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 0;
}

.logo img {
    height: 55px;
    transition: var(--transition);
}

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

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 20px 16px;
    display: inline-block;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

/* Contact Button in nav */
.contact-btn {
    color: var(--secondary) !important;
    font-weight: 600 !important;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(30, 115, 190, 0.1);
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    margin: 3px 0;
    display: block;
    transition: all 0.4s ease;
    border-radius: 3px;
}

.nav-toggle:hover span {
    background: var(--secondary);
}

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

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

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

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    z-index: 1;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-highlight {
    color: var(--secondary-light);
    font-size: 4.5rem;
    font-weight: 900;
    color: #e0e8f0;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats (kept for compatibility) */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

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

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 80px 0;
    background: var(--white);
}

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

.welcome-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.welcome-content h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.welcome-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 16px 0 0;
    border-radius: 2px;
}

.welcome-content p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.9;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: block;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 14px auto 0;
    border-radius: 2px;
}

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

.section-heading.light::after {
    background: var(--accent-teal);
}

/* ===== TOP PRODUCTS SECTION ===== */
.top-products {
    padding: 80px 0;
    background: var(--light);
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.product-card-image {
    overflow: hidden;
    height: 220px;
    background: var(--light);
}

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

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

.product-card-body {
    padding: 28px;
}

.product-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.product-card-body h3 a {
    color: var(--primary);
    transition: var(--transition);
}

.product-card-body h3 a:hover {
    color: var(--secondary);
}

.product-card-body p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.read-more-btn:hover {
    color: var(--secondary-dark);
    gap: 12px;
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: var(--transition);
}

/* ===== SOFTWARE PRODUCTS GRID ===== */
.software-products {
    padding: 80px 0;
    background: var(--white);
}

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

.software-item {
    text-align: center;
    transition: var(--transition);
}

.software-item a {
    display: block;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 2px solid #ffffff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.software-item a:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}

.software-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 14px;
}

.software-item span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 115, 190, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: white;
    background: rgba(30, 115, 190, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--secondary);
    transform: scale(1.1);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 22px;
    display: inline-block;
    transition: var(--transition);
    color: var(--secondary-light);
}

.service-card h3 {
    margin-bottom: 14px;
    color: white;
    font-size: 1.25rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service icon for detailed service cards */
.service-icon {
    font-size: 3rem;
    margin-bottom: 22px;
    display: inline-block;
    transition: var(--transition);
    color: var(--secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--primary-light);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: white;
    position: relative;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-dark);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 0;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 22px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-section p i {
    color: var(--secondary-light);
    width: 20px;
    margin-right: 4px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

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

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    color: var(--secondary-light) !important;
    font-style: italic;
    font-size: 0.95rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Image-mode: use uploaded hero slide as background */
.page-header--image {
    padding: 110px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-header--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.78), rgba(30,115,190,.55));
    z-index: 0;
}
.page-header--image .container { position: relative; z-index: 2; }

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 115, 190, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb a {
    color: var(--secondary-light);
}

/* ===== TEAM PAGE ===== */
.team-section {
    padding: 80px 0;
    background: var(--light);
}

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

.team-member {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 2;
}

.team-member:nth-child(1)::before { background: var(--secondary); }
.team-member:nth-child(2)::before { background: var(--accent-teal); }
.team-member:nth-child(3)::before { background: var(--accent-orange); }
.team-member:nth-child(4)::before { background: var(--accent-gold); }

.team-img {
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.5s ease;
    display: block;
}

.team-member:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.position {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: var(--secondary);
    background: rgba(30, 115, 190, 0.1);
}

.team-info p {
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--light);
    border-radius: 50%;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-intro p {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission, .vision {
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.mission {
    background: linear-gradient(135deg, #eef4ff 0%, #e0ecff 100%);
}

.vision {
    background: linear-gradient(135deg, #e8faf8 0%, #d4f5f0 100%);
}

.mission:hover, .vision:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

.mission h2, .vision h2 {
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.mission i { color: var(--secondary); font-size: 1.8rem; }
.vision i { color: var(--accent-teal); font-size: 1.8rem; }

.mission p, .vision p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
}

/* Values section */
.values-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

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

.value-card i {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: inline-block;
    color: var(--secondary);
    transition: var(--transition);
}

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

.value-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

.value-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* Achievements */
.achievements {
    margin-top: 60px;
    text-align: center;
}

.achievements h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.achievement {
    padding: 36px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: white;
    background: var(--gradient-blue);
}

.achievement:nth-child(2) { background: var(--accent-teal); }
.achievement:nth-child(3) { background: var(--accent-orange); }
.achievement:nth-child(4) { background: var(--primary); }

.achievement:hover {
    transform: translateY(-6px);
}

.achievement-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.achievement-text {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== SERVICES PAGE ===== */
.services-intro {
    padding: 60px 0;
    text-align: center;
    background: var(--light);
}

.services-intro .lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-700);
}

.all-services {
    padding: 80px 0;
    background: var(--light);
}

.services-grid.detailed {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.service-card.detailed {
    padding: 36px;
    text-align: left;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card.detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    opacity: 1;
}

.service-card.detailed .service-image {
    margin: -36px -36px 22px;
    overflow: hidden;
    height: 200px;
    background: var(--gray-100);
}

.service-card.detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card.detailed:hover .service-image img {
    transform: scale(1.05);
}

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

.service-card.detailed .service-icon { color: var(--secondary); }

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

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

.service-card.detailed p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-top: 16px;
}

.service-features li {
    padding: 8px 0 8px 24px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.service-features li:before {
    content: '\2192';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-features li:hover {
    padding-left: 30px;
    color: var(--secondary);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: white;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.section-title.black {
    color: white !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 18px;
    background: var(--secondary);
}

.process-step h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 1.15rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== PRODUCTS PAGE ===== */
.products-section {
    padding: 80px 0;
    background: var(--light);
}

.products-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.products-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.products-intro p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Product Grid Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    z-index: 2;
}

.product-item-image {
    overflow: hidden;
    background: var(--light);
}

.product-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-item:hover .product-item-image img {
    transform: scale(1.04);
}

.product-item-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.badge-live { background: var(--accent-green); color: white; }
.badge-new { background: var(--accent-orange); color: white; }
.badge-offline { background: var(--gray-500); color: white; }

.product-item-content {
    padding: 28px;
}

.product-item-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-item-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
    color: var(--secondary);
}

.product-item-content > p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.product-features-list {
    list-style: none;
    margin-bottom: 22px;
}

.product-features-list li {
    padding: 5px 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features-list li i {
    color: var(--secondary);
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

.product-item-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-item-actions .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

/* Sub-products */
.sub-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 0;
    padding: 18px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.sub-product {
    text-align: center;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-product:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.sub-product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    margin-bottom: 8px;
}

.sub-product h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.sub-product p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.sub-product .btn {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* Upcoming Products */
.upcoming-products {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.upcoming-products h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.upcoming-products > .container > p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

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

.upcoming-product {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.upcoming-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

.upcoming-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.upcoming-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: white;
    background: var(--secondary);
    transition: var(--transition);
}

.upcoming-product:hover .upcoming-icon {
    transform: scale(1.08);
}

.upcoming-product h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1.3rem;
}

.upcoming-product p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.status {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-development {
    background: rgba(255, 195, 0, 0.15);
    color: #cc9c00;
}

.status-planning {
    background: rgba(30, 115, 190, 0.1);
    color: var(--secondary);
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.partnership-section h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: white;
}

.partnership-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.contact-method {
    background: white;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    background: var(--secondary);
    transition: var(--transition);
}

.contact-method:hover .contact-icon {
    transform: scale(1.08);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.contact-details {
    margin: 16px 0;
}

.contact-details p {
    margin: 10px 0;
    color: var(--gray-500);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-details i {
    color: var(--secondary);
    font-size: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 14px;
    font-style: italic;
    line-height: 1.6;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.faq-item {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* Form Styles */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 2rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 36px;
    color: var(--gray-500);
    font-size: 1.05rem;
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--dark);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--secondary-dark);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 80px 0;
    background: var(--light);
}

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

.why-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: var(--secondary);
    background: rgba(30, 115, 190, 0.1);
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.why-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.15rem;
}

.why-card p {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== IMPACT SHOWCASE ===== */
.impact-showcase {
    padding: 80px 0;
    background: var(--white);
}

.section-subtext {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 650px;
    margin: -30px auto 40px;
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.impact-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.impact-item.impact-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    height: 100%;
}

.impact-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.impact-item:hover img {
    transform: scale(1.08);
}

.impact-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.4) 60%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.impact-item:hover .impact-overlay {
    transform: translateY(0);
    opacity: 1;
}

.impact-overlay h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.impact-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* ===== EXPERTISE BANNER ===== */
.expertise-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* fixed causes severe scroll jank on long pages */
    color: white;
    text-align: center;
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.85);
}

.expertise-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.expertise-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.expertise-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.expertise-stat .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.expertise-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===== HOME GALLERY ===== */
.home-gallery {
    padding: 80px 0;
    background: var(--light);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    position: relative;
}

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

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

/* ===== SERVICES GRID 3-COL ===== */
.services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar, .top-bar, .nav-toggle, .footer, .btn, .scroll-top {
        display: none !important;
    }
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    .hero, .page-header {
        padding: 20px 0;
        background: #fff !important;
        color: #000 !important;
    }
}
