/* 
   Main Stylesheet 
   Contains core design tokens, layout, and component styles.
   Accent colors are dynamically injected via header.php :root override.
*/

:root {
    --bg: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --surface: rgba(255, 255, 255, 0.82);
    --border: rgba(226, 232, 240, 0.8);
    --radius: 16px;
}

/* Layout Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.container-sm {
    max-width: 900px;
}

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

body {
    font-family: 'Noto Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.outfit {
    font-family: 'Noto Sans', sans-serif;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    height: 70px;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(109, 93, 252, 0.08);
}

.nav-menu a.active {
    color: var(--white) !important;
    background: var(--primary);
    box-shadow: 0 8px 15px -5px var(--primary-glow);
}

/* Hamburger Menu Button (always visible) */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(109, 93, 252, 0.08);
    border: 1px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s;
}

.hamburger:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Drawer Menu */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    z-index: 2000;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar for Drawer */
.drawer::-webkit-scrollbar {
    width: 5px;
}

.drawer::-webkit-scrollbar-track {
    background: transparent;
}

.drawer::-webkit-scrollbar-thumb {
    background: var(--primary-glow);
    border-radius: 10px;
}

.drawer:hover::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(6px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-close {
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.drawer-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.drawer-menu {
    margin-top: 40px;
    list-style: none;
    flex-grow: 1;
}

.drawer-menu li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: 0.4s;
}

.drawer.active .drawer-menu li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger effect for drawer menu items */
.drawer.active .drawer-menu li:nth-child(1) {
    transition-delay: 0.1s;
}

.drawer.active .drawer-menu li:nth-child(2) {
    transition-delay: 0.2s;
}

.drawer.active .drawer-menu li:nth-child(3) {
    transition-delay: 0.3s;
}

.drawer.active .drawer-menu li:nth-child(4) {
    transition-delay: 0.4s;
}

.drawer.active .drawer-menu li:nth-child(5) {
    transition-delay: 0.5s;
}

.drawer-menu a {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Outfit';
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: var(--text-muted);
    border-radius: 14px;
    transition: 0.3s;
}

.drawer-menu a i {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.7;
}

.drawer-menu a:hover,
.drawer-menu a.active {
    background: rgba(109, 93, 252, 0.08);
    color: var(--primary);
}

.drawer-menu a.active {
    background: var(--primary);
    color: white !important;
}

.drawer-menu a.active i {
    color: white;
    opacity: 1;
}

.drawer-footer {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-top: 30px;
}

.drawer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.drawer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-muted);
    transition: 0.3s;
}

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

.drawer-contact {
    margin-bottom: 25px;
}

.drawer-contact p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.drawer-contact p i {
    color: var(--primary);
    font-size: 16px;
}

/* Blog Specific Styles */
.page-main {
    padding: 180px 0 100px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

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

.read-btn:hover {
    color: var(--primary);
    gap: 12px !important;
}

input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 5px rgba(109, 93, 252, 0.15);
    background: #fff !important;
}

.sidebar-ad:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

/* Blog Details Specific */
.post-header {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h2,
.post-content h3 {
    margin: 40px 0 20px;
    font-weight: 700;
    color: var(--text);
}

.post-content img {
    max-width: 100%;
    border-radius: 20px;
    margin: 30px 0;
}

.related-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.related-card:hover h4 {
    color: var(--primary);
}

.related-card img {
    transition: transform 0.6s ease;
}

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

.landscape-ad-container a:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Sidebar & Widgets Enhancement */
.widget {
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.widget:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border-color: var(--primary-light, var(--primary));
}

.widget h4 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.categories-widget a {
    transition: all 0.3s ease;
}

.categories-widget a:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

.categories-widget span {
    transition: all 0.3s ease;
}

.categories-widget a:hover span {
    background: var(--primary) !important;
    color: white !important;
}

.recent-widget a {
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 12px;
}

.recent-widget a:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.recent-widget img {
    transition: transform 0.4s ease;
}

.recent-widget a:hover img {
    transform: scale(1.1);
}

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

/* Category Group Headers */
.category-header-bordered {
    border-left: 6px solid var(--primary);
    padding-left: 25px;
    margin: 60px 0 40px;
}

.category-header-bordered h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Product Details Specific */
.product-details-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-img {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}

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

.thumb {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.3s;
}

.thumb:hover,
.thumb.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

.product-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.product-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.specs-table td:first-child {
    font-weight: 700;
    color: var(--text-muted);
    width: 160px;
}

/* Product Variants & Add-ons UI */
.variant-section,
.addon-section {
    margin-bottom: 35px;
}

.section-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.variant-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.variant-pill {
    cursor: pointer;
    position: relative;
}

.variant-pill input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.variant-pill .pill-label {
    display: block;
    padding: 10px 20px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.variant-pill input:checked+.pill-label {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.variant-pill:hover .pill-label {
    border-color: var(--primary);
}

.addon-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.addon-item:hover {
    border-color: var(--primary);
    background: #fff;
}

.addon-item.active {
    border-color: var(--primary);
    background: rgba(109, 93, 252, 0.05);
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-item input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.addon-name {
    font-size: 15px;
    font-weight: 700;
}

.addon-price-tag {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
}

/* Portfolio Specific UI */
.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.08);
}

.portfolio-card .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.active-pill {
    background: rgba(109, 93, 252, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
}

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

.project-url-badge {
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.project-url-badge:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Video & Gallery UI */
.video-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    opacity: 0.85;
    transition: 0.5s;
}

.video-card:hover .video-thumb {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    transition: 0.3s;
    z-index: 10;
}

.video-card:hover .play-overlay {
    background: var(--primary);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 20px rgba(109, 93, 252, 0);
}

/* Video Modal Styling */
.video-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-container {
    width: 100%;
    max-width: 1000px;
    background: #000;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-container {
    transform: scale(1);
}

.video-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 32px;
}

.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

@media (max-width: 1040px) {
    .video-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.video-modal-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}


.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.5s;
}

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

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

.gallery-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    transform: translateY(10px);
    transition: 0.5s;
}

.gallery-card:hover .gallery-title {
    transform: translateY(0);
}

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

.landscape-ad-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Responsiveness */
@media (max-width: 991px) {

    .page-main {
        padding: 120px 0 60px;
    }

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

    .blog-main {
        order: 1;
    }

    .sidebar {
        order: 2;
        margin-top: 50px;
    }

    .main-sections-header h1 {
        font-size: 36px !important;
    }

    .category-group h2 {
        font-size: 26px !important;
    }

    .post-header {
        padding: 25px;
    }

    .post-header h1 {
        font-size: 32px !important;
    }

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

    .landscape-ad-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE & TEAM SECTION
   ═══════════════════════════════════════════ */
.about-section {
    padding: 100px 0;
}

.about-stacked {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stacked:hover .about-image img {
    transform: scale(1.03);
}

.about-content {
    text-align: left;
    margin-top: 30px;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text);
}

.about-content .content-rich {
    text-align: left;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-content .content-rich * {
    text-align: left !important;
}

.about-content .content-rich p {
    margin-bottom: 20px;
}

.about-content .content-rich p:last-child {
    margin-bottom: 0;
}

/* Team Grid */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(109, 93, 252, 0.15);
    border-color: var(--primary);
}

.team-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border);
    transition: 0.3s;
}

.team-card:hover .team-image {
    border-color: var(--primary);
    transform: scale(1.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.team-card .designation {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.team-card .bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.team-contact-info {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.team-contact-info a {
    font-size: 16px;
    color: var(--primary);
    opacity: 0.7;
    transition: 0.3s;
}

.team-contact-info a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════
   PAGE HERO & BREADCRUMBS
   ═══════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: var(--text);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs i {
    font-size: 10px;
    color: var(--border);
}

.breadcrumbs span {
    color: var(--primary);
}

/* Mobile Fixes for About/Team */
@media (max-width: 640px) {

    .about-section,
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .team-card {
        padding: 30px 20px;
    }

    .about-image {
        border-radius: 20px;
    }
}

/* ═══════════════════════════════════════════
   ADVERTISING GRIDS
   ═══════════════════════════════════════════ */
.landscape-ad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .landscape-ad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ═══════════════════════════════════════════
   SOCIAL BRAND COLORS
   ═══════════════════════════════════════════ */
.facebook:hover,
.social-icon.facebook:hover,
.contact-social-btn.facebook:hover,
.hp-contact-social-btn.facebook:hover {
    background: #1877F2 !important;
    color: #fff !important;
    border-color: #1877F2 !important;
    box-shadow: 0 10px 20px -5px rgba(24, 119, 242, 0.5) !important;
}

.twitter:hover,
.social-icon.twitter:hover,
.contact-social-btn.twitter:hover,
.hp-contact-social-btn.twitter:hover {
    background: #000000 !important;
    color: #fff !important;
    border-color: #000000 !important;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3) !important;
}

.instagram:hover,
.social-icon.instagram:hover,
.contact-social-btn.instagram:hover,
.hp-contact-social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 10px 20px -5px rgba(220, 39, 67, 0.4) !important;
}

.linkedin:hover,
.social-icon.linkedin:hover,
.contact-social-btn.linkedin:hover,
.hp-contact-social-btn.linkedin:hover {
    background: #0A66C2 !important;
    color: #fff !important;
    border-color: #0A66C2 !important;
    box-shadow: 0 10px 20px -5px rgba(10, 102, 194, 0.5) !important;
}

.youtube:hover,
.social-icon.youtube:hover {
    background: #FF0000 !important;
    color: #fff !important;
    border-color: #FF0000 !important;
    box-shadow: 0 10px 20px -5px rgba(255, 0, 0, 0.5) !important;
}

.whatsapp:hover,
.contact-social-btn.whatsapp:hover,
.hp-contact-social-btn.whatsapp:hover {
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.5) !important;
}

/* ═══════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═══════════════════════════════════════════ */
.toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 20px;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateX(120%);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.toast.show { transform: translateX(0); }
.toast i { font-size: 24px; flex-shrink: 0; }
.toast-content { flex-grow: 1; }
.toast-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.toast-message { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

.toast.success { border-left: 6px solid #22c55e; }
.toast.success i { color: #22c55e; }
.toast.error { border-left: 6px solid #ef4444; }
.toast.error i { color: #ef4444; }

@media (max-width: 600px) {
    .toast-container { top: 20px; right: 20px; left: 20px; }
    .toast { min-width: unset; width: 100%; }
}