/* =============================================
   GET A SAFE - Corporate Theme (TCS Inspired)
   ============================================= */

:root {
    /* TCS Corporate Style mixed with Precision Safes Red */
    --color-primary: #0a0a0b;    /* Deep corporate black/blue */
    --color-secondary: #ffffff;  /* Pure white */
    --color-accent: #E3000F;     /* Precision Safes Red */
    --color-accent-dark: #B3000C;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #111111;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #eaeaea;

    /* Australian Flag Gradient Token */
    --gradient-aus: linear-gradient(135deg, #012169 0%, #001240 40%, #E4002B 100%);

    --font-main: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Smooth behavior removed as Lenis will handle it dynamically */
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Lenis Smooth Scroll CSS */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

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

.alt-bg {
    background-color: var(--color-bg-light);
}

.aus-gradient-bg {
    background: var(--gradient-aus);
    color: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

/* Add subtle starry/flag pattern overlay for texture */
.aus-gradient-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.aus-gradient-bg .container {
    position: relative;
    z-index: 2;
}

.aus-gradient-bg h2, 
.aus-gradient-bg h3, 
.aus-gradient-bg h4, 
.aus-gradient-bg p, 
.aus-gradient-bg .section-tag {
    color: var(--color-secondary);
}

/* Typography (Strict TCS Style) */
h1, h2, h3, h4 {
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em; /* Tighter TCS kerning */
    text-transform: none;
}

.section-heading {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

.section-subheading {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    letter-spacing: -0.01em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(227, 0, 15, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   NAVBAR (TCS Style)
   ============================================= */
.tcs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.tcs-navbar:hover {
    background-color: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tcs-navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(1, 33, 105, 0.95); /* Deep Aus Blue on scroll */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.tcs-navbar:hover .logo-img,
.tcs-navbar.scrolled .logo-img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mega Dropdown */
.dropdown-trigger {
    position: relative;
}

.dropdown-trigger i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown-trigger:hover i {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 800px;
    background-color: var(--color-secondary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 4px solid var(--color-accent);
}

.dropdown-trigger:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(10px);
}

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

.mega-col h4 {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.mega-col a {
    display: block;
    color: var(--color-text-muted) !important;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.mega-col a::after {
    display: none;
}

.mega-col a:hover {
    color: var(--color-accent) !important;
    padding-left: 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.contact-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =============================================
   INNER PAGE HERO (New)
   ============================================= */
.inner-hero {
    height: 40vh;
    min-height: 350px;
    background-color: var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* offset for navbar */
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.2); }
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-secondary);
}

.inner-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.breadcrumb {
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: #aaaaaa;
}

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

/* =============================================
   HERO SLIDER (Elegant TCS Fade)
   ============================================= */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    width: 100%;
    background-color: var(--color-primary);
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.02);
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1); 
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 33, 105, 0.95) 0%, rgba(10, 10, 11, 0.4) 60%, transparent 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    max-width: 1400px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    color: var(--color-secondary);
    background-color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 30px;
    display: inline-flex;
    width: fit-content;
    text-transform: uppercase;
}

.slide-title {
    color: var(--color-secondary);
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
    text-transform: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 1000px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.slide-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev { left: 40px; }
.hero-next { right: 40px; }


.slide-buttons {
    display: flex;
    gap: 20px;
}

.swiper-pagination-bullet {
    background: var(--color-secondary) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--color-accent) !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* =============================================
   INTRO SECTION (TCS Who We Are)
   ============================================= */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.intro-text, .intro-visual {
    min-width: 0;
    width: 100%;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.text-link {
    color: var(--color-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link:hover {
    gap: 12px;
}

/* Mac Glossy Card */
.mac-glossy-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .mac-glossy-card {
        padding: 30px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, #333 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.intro-badges {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.badge-btn i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.badge-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.intro-visual {
    width: 100%;
    position: relative;
}

.intro-photo-album {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 0 40px; 
}

.album-card {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 4px solid #ffffff;
}

.album-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-end;
}

/* =============================================
   DYNAMIC PRODUCT SLIDER (Replaces Grid)
   ============================================= */
.product-slider-container {
    width: 100%;
    padding: 40px 0 80px;
    overflow: hidden;
}

.product-slider {
    width: 100%;
    overflow: visible !important; /* Allow slides to peek */
}

.product-slider .swiper-slide {
    width: 400px; /* Fixed width for items */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
    transform: scale(0.85); /* Zoom out effect by default */
}

.product-slider .swiper-slide-active,
.product-slider .swiper-slide-next,
.product-slider .swiper-slide-prev {
    opacity: 1;
}

.product-slider .swiper-slide-active {
    transform: scale(1); /* Full view for active item */
    z-index: 10;
}

.product-card {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.1) 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    color: var(--color-secondary);
}

.card-content h3 {
    color: var(--color-secondary);
    font-size: 2rem;
    margin-bottom: 12px;
}

.card-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-accent);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

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

.product-card:hover .card-content p,
.product-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    border: none;
}

.slider-nav-btn:hover {
    background: var(--gradient-aus);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Fallback Grid (Shop Page) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.product-grid .product-card {
    height: 400px;
}
.product-grid .product-card .card-content p, 
.product-grid .product-card .card-link {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SERVICES SPLIT (TCS What We Do)
   ============================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-layout:hover .split-image img {
    transform: scale(1.02);
}

.section-tag {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
}

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

.service-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--color-secondary);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.service-list li:hover {
    transform: translateX(10px);
}

.service-list i {
    font-size: 2rem;
    color: var(--color-accent);
}

.service-list h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-list p {
    color: var(--color-text-muted);
}

/* =============================================
   CONTACT FORM (New)
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--gradient-aus);
    color: var(--color-secondary);
    padding: 50px;
    border-radius: 12px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.contact-info-card h2, .contact-info-card p, .contact-info-card .section-tag {
    color: var(--color-secondary);
}

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

.contact-info-item i {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
}

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

.form-control {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--color-bg-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(227, 0, 15, 0.1);
}

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

/* =============================================
   ARTICLE LAYOUT (New for Buying Advice)
   ============================================= */
.article-layout {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-layout h2, .article-layout h3 {
    margin: 40px 0 20px;
}

.article-layout p {
    margin-bottom: 20px;
}

.article-layout ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-layout li {
    margin-bottom: 10px;
}

/* =============================================
   WHY CHOOSE US (TCS Discover) - Modified for Aus Gradient
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05); /* Glass effect on gradient */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-item i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 25px;
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   BLOG / INSIGHTS SECTION (TCS Insights)
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--color-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title a:hover {
    color: var(--color-accent);
}

/* =============================================
   REVIEWS TAPE
   ============================================= */
.reviews-tape {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 80px 0;
    text-align: center;
}

.review-quote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
}

.review-author {
    color: var(--color-accent);
    font-weight: 600;
}

/* =============================================
   BRANDS TAPE
   ============================================= */
.brands-tape {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.brands-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brands-flex span {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brands-flex span:hover {
    color: var(--color-secondary);
}

/* =============================================
   FOOTER (TCS Style)
   ============================================= */
.tcs-footer {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 80px 0 20px;
}

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

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
    /* Removed filter so original logo colors shine through clearly */
}

.footer-desc {
    color: #aaaaaa;
    max-width: 400px;
}

.tcs-footer h4 {
    color: var(--color-secondary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.footer-contact-info li,
.footer-links li {
    margin-bottom: 16px;
    color: #aaaaaa;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info i {
    color: var(--color-accent);
    margin-top: 4px;
}

.footer-links a:hover,
.footer-contact-info a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
    font-size: 0.9rem;
}

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

.social-links a {
    color: #aaaaaa;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--color-secondary);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: white;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .contact-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .nav-links.show-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        padding: 20px 40px;
    }
    
    .mega-dropdown { display: none !important; }
    
    .intro-grid, .split-layout, .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section-heading { font-size: 2.2rem; }
    .slide-title { font-size: 2.5rem; }
    .product-grid { grid-template-columns: 1fr; }
    .brands-flex { justify-content: center; }
    .product-slider .swiper-slide { width: 85%; }
}
