﻿/* ============================================================================
   GREENTECH — Main Stylesheet  v3.0
   Project: GreenTech Agricultural Solutions
   Description: Single-file stylesheet for the GreenTech Laravel website.
                All gt- prefixed components; legacy aliases kept for compat.

   TABLE OF CONTENTS
   ─────────────────
   §  FONTS          @font-face declarations (Cairo)
   §  VARIABLES      :root CSS custom properties
   §  BASE           Reset, body, headings, anchors, images
   §  BUTTONS        Reusable .btn-gt* classes
   §  UTILITIES      .gt-section, .gt-container, .gt-fluid-wrap, padding helpers
   §  NAV            .gt-nav and all sub-components
   §  FOOTER         .gt-footer and all sub-components
   §  HERO           Hero section
   §  FEATURES       Features strip, stats strip
   §  PRODUCTS       Home product cards, products page cards/filter
   §  ABOUT          About section (home) + about page
   §  NEWS / BLOG    Blog/news page styles
   §  CONTACT        Contact page
   §  LEGAL          Legal page
   §  DOWNLOADS      Downloads section
   §  CTA            Call-to-action strip
   §  FAQ            Accordion
   §  PARTNERS       Partners/clients strip
   §  WHATSAPP       Floating WhatsApp button
   §  MISC           Preloader, breadcrumb, scroll-to-top, sub-banner,
                     section headers, video section, generic-title
   §  RTL OVERRIDES  All [dir="rtl"] rules
   §  RESPONSIVE     @media queries (1024px → 767px → 480px)
============================================================================ */


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  FONTS                                                                  */
/* ══════════════════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  VARIABLES                                                              */
/* ══════════════════════════════════════════════════════════════════════════ */

:root {
    --gt-green:        #00321e;
    --gt-green-deep:   #001a10;
    --gt-green-mid:    #41780a;
    --gt-lime:         #8dc63f;
    --gt-grass:        #346d0a;
    --gt-orange:       #c97a3a;
    --gt-text:         #444;
    --gt-text-light:   #777;
    --gt-white:        #fff;
    --gt-cream:        #f5f0e8;
    --gt-bg-light:     #f4f8f4;
    --gt-border:       #e0ece0;
    --gt-nav-h:        86px;

    /* Legacy aliases */
    --primary--color:    var(--gt-grass);
    --secondary--color:  var(--gt-lime);
    --green-color:       var(--gt-green);
    --dark-green-color:  var(--gt-green);
    --light-green-color: var(--gt-lime);
    --accent:            var(--gt-lime);
    --text-color:        #555;
    --white-color:       #fff;
    --orange:            #c97a3a;
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  BASE                                                                   */
/* ══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Cairo', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--gt-text);
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--gt-green);
}

a { transition: color .2s; }

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

/* Force Cairo on all RTL text, but restore icon fonts */
[dir="rtl"] *:not(i):not(svg):not(path):not(use):not(symbol) {
    font-family: 'Cairo', Arial, sans-serif !important;
}
[dir="rtl"] .fab,  [dir="rtl"] i.fab  { font-family: "Font Awesome 5 Brands" !important; font-weight: 400 !important; }
[dir="rtl"] .fas,  [dir="rtl"] i.fas  { font-family: "Font Awesome 5 Free"   !important; font-weight: 900 !important; }
[dir="rtl"] .far,  [dir="rtl"] i.far,
[dir="rtl"] .fa,   [dir="rtl"] i.fa   { font-family: "Font Awesome 5 Free"   !important; font-weight: 400 !important; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  BUTTONS                                                                */
/* ══════════════════════════════════════════════════════════════════════════ */
/*  Reusable site-wide button classes. Use anywhere: hero, sections, cards.  */

.btn-gt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    padding: 11px 26px;
    border-radius: 50px;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
    line-height: 1;
}
.btn-gt:hover { transform: translateY(-1px); text-decoration: none; }
.btn-gt:active { transform: translateY(0); }
.btn-gt svg { flex-shrink: 0; }

/* Lime (primary CTA) */
.btn-gt-lime {
    background: var(--gt-lime);
    color: #fff;
    border-color: var(--gt-lime);
    box-shadow: 0 3px 12px rgba(141,198,63,.3);
}
.btn-gt-lime:hover { background: #7ab834; border-color: #7ab834; color: #fff; box-shadow: 0 6px 20px rgba(141,198,63,.35); }

/* Dark green */
.btn-gt-green {
    background: var(--gt-green);
    color: #fff;
    border-color: var(--gt-green);
    box-shadow: 0 3px 12px rgba(0,50,30,.25);
}
.btn-gt-green:hover { background: #00231a; border-color: #00231a; color: #fff; }

/* Grass (accent) */
.btn-gt-grass {
    background: var(--gt-grass);
    color: #fff;
    border-color: var(--gt-grass);
    box-shadow: 0 3px 12px rgba(52,109,10,.28);
}
.btn-gt-grass:hover { background: #285508; border-color: #285508; color: #fff; }

/* Outline lime */
.btn-gt-outline {
    background: transparent;
    color: var(--gt-lime);
    border-color: var(--gt-lime);
}
.btn-gt-outline:hover { background: var(--gt-lime); color: #fff; }

/* Outline white (for dark backgrounds) */
.btn-gt-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.65);
}
.btn-gt-outline-white:hover { background: #fff; color: var(--gt-green); border-color: #fff; }

/* Ghost — no border, just text */
.btn-gt-ghost {
    background: transparent;
    color: var(--gt-grass);
    border-color: transparent;
    padding-inline: 10px;
}
.btn-gt-ghost:hover { color: var(--gt-green); background: rgba(52,109,10,.07); }

/* Sizes */
.btn-gt-sm { font-size: .8rem;   padding: 7px 18px;  }
.btn-gt-lg { font-size: 1rem;    padding: 14px 34px; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  UTILITIES                                                              */
/* ══════════════════════════════════════════════════════════════════════════ */

.wrapper {
    max-width: 1560px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Fluid wrapper — nav & footer span full width with responsive side padding */
.gt-fluid-wrap {
    width: 100%;
    padding-left:  clamp(16px, 4vw, 72px); /* clamps to 16px min on mobile */
    padding-right: clamp(16px, 4vw, 72px);
}

.gt-section    { padding: 88px 0; }
.gt-section--sm { padding: 60px 0; }

.padding-top    { padding-top:    88px !important; }
.padding-bottom { padding-bottom: 88px !important; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  NAV                                                                    */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 2px 10px rgba(0,0,0,.05);
}

.gt-nav-inner {
    display: flex;
    align-items: center;
    padding: 14px 0;
    gap: 12px;
}

/* Logo */
.gt-nav-logo { flex-shrink: 0; line-height: 0; align-self: center; }
.gt-nav-logo img {
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: opacity .2s;
}
.gt-nav-logo:hover img { opacity: .85; }

/* Desktop nav links */
.gt-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    height: 100%;
    align-items: stretch;
}

.gt-nav-links li {
    display: flex;
    align-items: stretch;
    position: relative;
}

.gt-nav-links li a {
    display: flex;
    align-items: center;
    padding: 0 22px;
    font-size: 1.08rem;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s;
    position: relative;
}

/* Active indicator — bar sitting below the link text with a small gap */
.gt-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--gt-lime);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
    border-radius: 3px;
}

.gt-nav-links li a:hover { color: var(--gt-green-mid); }
.gt-nav-links li.active a { color: var(--gt-green-mid); font-weight: 600; }

.gt-nav-links li.active a::after { transform: scaleX(1); transition: none; }
.gt-nav-links li a:hover::after { transform: scaleX(1); }

/* Language toggle pill */
.gt-lang-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gt-green-mid);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    box-shadow: 0 2px 8px rgba(65,120,10,.22);
    align-self: center;
}
.gt-lang-btn:hover {
    background: var(--gt-grass);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.gt-lang-btn svg { flex-shrink: 0; }

/* Hamburger */
.gt-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 7px;
    background: var(--gt-green-mid);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    margin-left: auto;
    align-self: center;
}
.gt-toggler:hover { background: var(--gt-green); }
.gt-toggler:focus { outline: none; box-shadow: 0 0 0 3px rgba(141,198,63,.35); }

.gt-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .28s ease, opacity .22s ease;
}
.gt-toggler.open .gt-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gt-toggler.open .gt-bar:nth-child(2) { opacity: 0; }
.gt-toggler.open .gt-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.gt-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}
.gt-nav-overlay.open { opacity: 1; visibility: visible; }

/* Mobile side drawer — slides in from the right */
.gt-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    background: #fff;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -6px 0 40px rgba(0,0,0,.14);
}
.gt-nav-drawer.open { transform: translateX(0); }

/* Drawer header */
.gt-drawer-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.gt-drawer-close {
    width: 30px;
    height: 30px;
    border: none;
    background: #f3f3f3;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background .15s, color .15s;
}
.gt-drawer-close:hover { background: #fce4e4; color: #c00; }

/* Drawer nav links */
.gt-nav-drawer .gt-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
    height: auto;
    padding: 8px 10px 10px;
    flex: 1;
    overflow-y: auto;
    justify-content: flex-start;
}
.gt-nav-drawer .gt-nav-links li {
    display: flex;
    width: 100%;
}
.gt-nav-drawer .gt-nav-links li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 11px 14px;
    font-size: .92rem;
    font-weight: 400;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s, color .15s;
    gap: 10px;
}
.gt-nav-drawer .gt-nav-links li a::after { display: none; }
.gt-nav-drawer .gt-nav-links li a:hover { background: rgba(65,120,10,.08); color: var(--gt-green-mid); }
.gt-nav-drawer .gt-nav-links li.active a {
    background: rgba(65,120,10,.1);
    color: var(--gt-green-mid);
    font-weight: 600;
}

/* Drawer footer — lang button */
.gt-drawer-foot {
    padding: 12px 10px 28px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}
.gt-drawer-foot .gt-lang-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: .88rem;
    box-shadow: none;
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  FOOTER                                                                 */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-footer {
    background: linear-gradient(180deg, var(--gt-green) 0%, #001f12 100%);
    border-top: 4px solid var(--gt-lime);
    color: #fff;
    padding-top: 72px;
    padding-bottom: 0;
    margin-top: 0 !important;
}

/* Main grid */
.gt-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Brand column */
.gt-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.gt-footer-logo-link { display: inline-block; line-height: 0; }
.gt-footer-logo { max-height: 90px; max-width: 220px; width: auto; object-fit: contain; }
.gt-footer-brand-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    line-height: 1.55;
    margin: 0;
}
.gt-footer-brand-address svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }

/* Social icons */
.gt-footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.gt-footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.gt-footer-social a:hover { background: var(--gt-lime); color: #fff; transform: translateY(-2px); }

/* Column headings */
.gt-footer-heading {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(141,198,63,.4);
}

/* Contact list */
.gt-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gt-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .84rem;
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}
.gt-fc-icon { flex-shrink: 0; margin-top: 2px; opacity: .75; display: flex; }
.gt-footer-contact-list a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .18s; }
.gt-footer-contact-list a:hover { color: var(--gt-lime); }

/* Catalog QR */
.gt-footer-catalog { display: flex; flex-direction: column; align-items: flex-start; }
.gt-footer-catalog-text { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0 0 14px; line-height: 1.5; }
.gt-catalog-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 14px;
}
.gt-qr-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.gt-qr-img { display: block; border-radius: 3px; }
.gt-catalog-card-label { display: block; font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.4; margin-bottom: 10px; }
.gt-catalog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gt-green-mid);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}
.gt-catalog-btn:hover { background: var(--gt-grass); color: #fff; transform: translateY(-1px); }
.gt-catalog-soon { display: flex; align-items: center; justify-content: flex-start; padding: 16px 0; }

/* Newsletter */
.gt-footer-nl-text { font-size: .83rem; color: rgba(255,255,255,.65); margin: 0 0 16px; line-height: 1.6; }
.gt-footer-nl-form { width: 100%; }
.gt-footer-nl-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    overflow: hidden;
    padding: 4px 4px 4px 16px;
}
.gt-footer-nl-input {
    flex: 1;
    min-width: 0;
    padding: 8px 0;
    font-size: .83rem;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: 'Cairo', sans-serif;
}
.gt-footer-nl-input::placeholder { color: rgba(255,255,255,.45); }
.gt-footer-nl-btn {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gt-green-mid);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.gt-footer-nl-btn:hover { background: var(--gt-grass); }
.footer-subscribe-msg {
    margin-top: 8px;
    font-size: .78rem;
    border-radius: 6px;
    padding: 6px 12px;
    display: none;
}
.footer-subscribe-msg:not(.d-none) { display: block; }
.footer-subscribe-success { background: rgba(141,198,63,.15); color: #b8e478; border: 1px solid rgba(141,198,63,.3); }
.footer-subscribe-error   { background: rgba(220,53,69,.15);  color: #f5a0a9; border: 1px solid rgba(220,53,69,.3); }

/* Bottom bar */
.gt-footer-bottom {
    padding: 16px 0 20px;
}
.gt-footer-bottom-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.gt-footer-copy { font-size: .78rem; color: rgba(255,255,255,.55); flex-shrink: 0; }
.gt-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}
.gt-footer-legal li { display: flex; align-items: center; }
.gt-footer-legal li + li::before { content: '·'; color: rgba(255,255,255,.3); margin: 0 8px; }
.gt-footer-legal li a { font-size: .76rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.gt-footer-legal li a:hover { color: var(--gt-lime); }

/* HiTech credit */
.gt-hitech-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
}
.gt-hitech-credit a { display: inline-flex; line-height: 0; opacity: .8; transition: opacity .2s; }
.gt-hitech-credit a:hover { opacity: 1; }
.gt-hitech-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  HERO                                                                   */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-hero {
    position: relative;
    height: calc(100vh - var(--gt-nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f5f3ef;
}

.gt-hero-media-col {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gt-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gt-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #fff 0%, #fff 26%, rgba(255,255,255,.9) 42%, rgba(255,255,255,.45) 60%, rgba(255,255,255,0) 78%);
}

.gt-hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.gt-hero-content {
    width: 52%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 72px clamp(32px,4vw,64px) 72px clamp(24px,7vw,120px);
}

.gt-hero-sub {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gt-lime);
    background: rgba(141,198,63,.12);
    border-radius: 20px;
    padding: 5px 14px;
    width: fit-content;
}

.gt-hero-h1 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--gt-green);
    margin: 0;
}

.gt-hero-hl { color: var(--gt-lime); }

.gt-hero-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.72;
    margin: 0;
    max-width: 460px;
}

/* Legacy hero CTA buttons (used in hero blade) */
.gt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    cursor: pointer;
    border: none;
}

.gt-btn-primary {
    background: var(--gt-green);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,82,39,.3);
}
.gt-btn-primary:hover {
    background: var(--gt-green);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,82,39,.35);
}

.gt-btn-outline {
    background: transparent;
    color: var(--gt-green);
    border: 2px solid var(--gt-green);
}
.gt-btn-outline:hover {
    background: var(--gt-green);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Slide indicator dots */
.gt-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 32px;
    z-index: 3;
    display: flex;
    gap: 7px;
    align-items: center;
}

.gt-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(37,82,39,.25);
    cursor: pointer;
    transition: all .3s;
    border: 2px solid transparent;
}

.gt-hero-dot.active {
    background: var(--gt-green);
    width: 24px;
    border-radius: 4px;
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  FEATURES                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Features strip */
.gt-features {
    background: #fff;
    padding: 48px 0 56px;
}

.gt-features-row {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(215,225,190,.55);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}

.gt-feat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    position: relative;
    gap: 18px;
    text-align: center;
    transition: background .2s;
}

.gt-feat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55%;
    background: #cdd4b8;
}

.gt-feat:last-child::after { display: none; }
.gt-feat:hover { background: rgba(255,255,255,.55); }

.gt-feat-icon {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-green-mid);
}

.gt-feat-icon svg {
    width: 78px;
    height: 78px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-feat-label {
    font-size: .84rem;
    font-weight: 700;
    color: #1a2c1a;
    line-height: 1.4;
    max-width: 110px;
}

/* Stats strip */
.gt-stats {
    background: #f8f8f5;
    border-top: 1px solid #e8e8e2;
    border-bottom: 1px solid #e8e8e2;
    padding: 52px 0;
}

.gt-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gt-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    border-right: 1px solid #ddddd5;
    text-align: center;
    gap: 8px;
}

.gt-stat:last-child { border-right: none; }

.gt-stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-stat-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gt-lime);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gt-green);
    line-height: 1;
}

.gt-stat-label {
    font-size: .78rem;
    font-weight: 600;
    color: #777;
    line-height: 1.3;
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  PRODUCTS                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Partners / Brands section */
.gt-partners-section {
    padding: 60px 0;
    background: #f7f8f4;
}

.gt-partners-header {
    text-align: center;
    margin-bottom: 36px;
}

.gt-partners-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gt-green-mid);
    position: relative;
}

.gt-partners-label::before,
.gt-partners-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 52px;
    height: 1px;
    background: #c4d4ae;
}

.gt-partners-label::before { right: calc(100% + 14px); }
.gt-partners-label::after  { left:  calc(100% + 14px); }

.gt-partners-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gt-partner-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eaeee3;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 32px;
    transition: box-shadow .25s, transform .25s;
}

.gt-partner-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.gt-partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

.gt-partner-logo {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

/* Home products cards section */
.gt-products-section { padding: 88px 0; background: #fff; }

.gt-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
    gap: 24px;
}

.gt-products-sub {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gt-green-mid);
    margin-bottom: 8px;
}

.gt-products-title {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-weight: 700;
    color: var(--gt-green);
    margin: 0;
}

.gt-products-all {
    flex-shrink: 0;
    white-space: nowrap;
    color: var(--gt-green-mid);
    border-color: var(--gt-green-mid);
}
.gt-products-all:hover { background: var(--gt-green-mid); border-color: var(--gt-green-mid); color: #fff; }

.gt-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Slider wrapper (5+ categories) */
.gt-cat-slider-wrap {
    position: relative;
}

.gt-products-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

.gt-products-slider::-webkit-scrollbar { display: none; }

.gt-products-slider .gt-pc {
    flex: 0 0 calc(25% - 17px);
    scroll-snap-align: start;
}

.gt-cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #dde8d5;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gt-green);
    transition: background .2s, color .2s, box-shadow .2s;
    padding: 0;
}

.gt-cat-nav:hover { background: var(--gt-green-mid); color: #fff; box-shadow: 0 6px 20px rgba(55,118,57,.28); }
.gt-cat-nav:disabled { opacity: .35; cursor: default; pointer-events: none; }
.gt-cat-nav svg { flex-shrink: 0; }
.gt-cat-prev { left: -22px; }
.gt-cat-next { right: -22px; }

/* Category card (home) */
.gt-pc {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transition: transform .32s, box-shadow .32s;
    height: 360px;
}

.gt-pc:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(0,0,0,.2); }

/* Image area */
.gt-pc-img-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.gt-pc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

.gt-pc:hover .gt-pc-img { transform: scale(1.06); }

.gt-pc-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3d1b 0%, #255227 60%, #387639 100%);
}

/* Green info section */
.gt-pc-green {
    background: var(--gt-green-mid);
    padding: 28px 18px 22px;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

.gt-pc-icon-badge {
    position: absolute;
    top: -28px;
    left: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gt-green-mid);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[dir="rtl"] .gt-pc-icon-badge { left: auto; right: 16px; }

.gt-pc-icon-badge svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-pc-badge-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.gt-pc-body { display: none; }

.gt-pc-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gt-pc-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.gt-pc-desc {
    color: rgba(255,255,255,.78);
    font-size: .75rem;
    line-height: 1.5;
    margin: 4px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gt-pc-arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.gt-pc-arrow:hover { background: rgba(255,255,255,.18); transform: scale(1.1); text-decoration: none; }

.gt-pc-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Category Slider ── */
.gt-cat-slider-section { background: transparent; padding: 44px 0; border-bottom: 1px solid #efefef; }
.gt-cat-slider { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 0 8px; }
.gt-cat-slider::-webkit-scrollbar { display: none; }
.gt-cat-slide { flex-shrink: 0; width: 128px; cursor: pointer; text-align: center; display: flex; flex-direction: column; align-items: center; }
.gt-cat-slide, .gt-cat-slide:hover, .gt-cat-slide:focus { text-decoration: none; }
.gt-cat-slide-img-wrap { width: 112px; height: 112px; border-radius: 18px; overflow: hidden; border: 2px solid #e8e8e8; background: #f5f5f5; transition: border-color .22s, box-shadow .22s, transform .22s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gt-cat-slide.active .gt-cat-slide-img-wrap,
.gt-cat-slide:hover .gt-cat-slide-img-wrap { border-color: var(--gt-lime); box-shadow: 0 6px 20px rgba(141,198,63,.22); transform: translateY(-3px); }
.gt-cat-slide-img { width: 100%; height: 100%; object-fit: cover; }
.gt-cat-slide-icon-img { width: 58px; height: 58px; object-fit: contain; }
.gt-cat-slide-placeholder { width: 44px; height: 44px; color: #fff; }
.gt-cat-slide-name { font-size: .76rem; font-weight: 600; color: #888; margin-top: 11px; line-height: 1.3; transition: color .2s; }
.gt-cat-slide.active .gt-cat-slide-name,
.gt-cat-slide:hover .gt-cat-slide-name { color: var(--gt-green-mid); font-weight: 700; }
.gt-cat-slide::after { display: none; }
.gt-cat-slide-all .gt-cat-slide-img-wrap,
.gt-cat-slide-icon { background: var(--gt-green-mid); border-color: var(--gt-green-mid); }
.gt-cat-slide-all svg,
.gt-cat-slide-icon svg { color: #fff; }
.gt-cat-slide-all.active .gt-cat-slide-img-wrap,
.gt-cat-slide-all:hover .gt-cat-slide-img-wrap { box-shadow: 0 6px 20px rgba(65,120,10,.2); }

/* ── Products Page Layout ── */
.gt-products-page-section { padding: 50px;}
.gt-prod-layout { display: flex; gap: 32px; align-items: flex-start; }

/* Sidebar */
.gt-prod-sidebar { width: 220px; flex-shrink: 0; background: #fff; border: none; border-radius: 16px; padding: 15px; position: sticky; top: 96px; box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.gt-prod-sidebar-heading { font-size: .64rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: #bbb; margin: 0 0 16px; }
.gt-prod-sidebar-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.gt-prod-sidebar-link { display: flex; align-items: center; gap: 8px; padding: 9px 0; font-size: .875rem; font-weight: 500; color: #666; text-decoration: none; border-radius: 0; border-bottom: 1px solid #f0f0f0; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
li:last-child > .gt-prod-sidebar-link { border-bottom: none; }
.gt-prod-sidebar-link:hover { color: var(--gt-green-mid); text-decoration: none; }
.gt-prod-sidebar-link.active { color: var(--gt-green-mid); font-weight: 700; border-left: 3px solid var(--gt-lime); padding-left: 11px; }
.gt-prod-sidebar-sub-heading { font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #ccc; margin: 16px 0 6px 4px; }

/* Main content */
.gt-prod-main { flex: 1; min-width: 0; }
.gt-prod-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #e8e8e8; flex-wrap: wrap; gap: 10px; }
.gt-prod-count { font-size: .83rem; color: #b0b0b0; font-weight: 500; letter-spacing: .01em; }

/* Loading state */
#pf-grid.pf-loading { opacity: .35; pointer-events: none; transition: opacity .15s; }
#pf-cards-row { --bs-gutter-y: 0; }

/* ── Product Card ── */
.gt-prod-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07); transition: box-shadow .3s, transform .3s; display: flex; flex-direction: column; height: 100%; border: none; position: relative; }
.gt-prod-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gt-orange); z-index: 2; }
.gt-prod-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,.13); transform: translateY(-4px); }
.gt-prod-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #efefef; }
.gt-prod-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.gt-prod-card:hover .gt-prod-card-img { transform: scale(1.05); }
.gt-prod-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #d0d0d0; }
.gt-prod-card-badge { position: absolute; top: 14px; left: 14px; background: var(--gt-orange); color: #fff; font-size: .63rem; font-weight: 800; padding: 4px 12px; border-radius: 5px; letter-spacing: .06em; text-transform: uppercase; z-index: 2; }
.gt-prod-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gt-prod-card-tag { display: inline-block; font-size: .65rem; font-weight: 700; color: var(--gt-green-mid); background: rgba(65,120,10,.07); padding: 3px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: .07em; width: fit-content; }
.gt-prod-card-sub { font-size: .65rem; font-weight: 700; color: var(--gt-green-mid); background: rgba(65,120,10,.07); padding: 3px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: .07em; width: fit-content; display: inline-block; }
.gt-prod-card-title { font-size: 1.05rem; font-weight: 700; color: #1c1c1c; margin: 0; line-height: 1.4; }
.gt-prod-card-divider { display: block; width: 30px; height: 2px; background: var(--gt-orange); border-radius: 2px; margin: 2px 0; flex-shrink: 0; }
.gt-prod-card-desc { font-size: .82rem; color: #888; line-height: 1.75; margin: 0; }
.gt-prod-card-spacer { display: none; }
.gt-prod-card-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid #f0f0f0; display: flex; justify-content: flex-end; }
.gt-prod-card-btn { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--gt-orange); padding: 8px 20px; border-radius: 50px; font-size: .8rem; font-weight: 700; text-decoration: none; transition: background .22s, color .2s, gap .2s, border-color .22s; letter-spacing: .02em; border: 1.5px solid var(--gt-orange); cursor: pointer; }
.gt-prod-card-btn svg { flex-shrink: 0; transition: transform .2s; }
.gt-prod-card-btn:hover { background: var(--gt-orange); color: #fff; gap: 11px; text-decoration: none; }
.gt-prod-card-btn:hover svg { transform: translateX(3px); }

/* ── Product modal (split layout) ── */
.gt-prod-modal.modal { padding-right: 0 !important; }
.gt-prod-modal .modal-dialog { max-width: 860px; }
.gt-prod-modal .modal-content { display: flex !important; flex-direction: row; min-height: 500px; border-radius: 20px; overflow: hidden; border: none; box-shadow: 0 32px 80px rgba(0,0,0,.24); }
.gt-prod-modal-left { width: 42%; flex-shrink: 0; background: #e4ede4; position: relative; overflow: hidden; }
.gt-prod-modal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gt-prod-modal-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--gt-green-mid); color: rgba(255,255,255,.3); }
.gt-prod-modal-right { flex: 1; display: flex; flex-direction: column; overflow-y: auto; max-height: 90vh; background: #fff; }
.gt-prod-modal-close-row { padding: 18px 22px 0; display: flex; justify-content: flex-end; flex-shrink: 0; }
.gt-modal-close { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; border: none; border-radius: 50%; background: #f0f0f0; cursor: pointer; flex-shrink: 0; transition: background .15s, transform .12s; }
.gt-modal-close:hover { background: #ddd; transform: scale(1.1); }
.gt-prod-modal-body { padding: 14px 32px 22px; flex: 1; }
.gt-prod-modal-tag { font-size: .65rem; font-weight: 700; color: var(--gt-green-mid); text-transform: uppercase; letter-spacing: .09em; margin: 0 0 10px; }
.gt-prod-modal-title { font-size: 1.2rem; font-weight: 700; color: #1a1a1a; line-height: 1.35; margin: 0 0 16px; }
.gt-prod-modal-hr { border: none; border-top: 2px solid var(--gt-orange); width: 36px; margin: 0 0 18px; }
.gt-prod-modal-desc { font-size: .875rem; color: #555; line-height: 1.9; }
.gt-prod-modal-desc p { margin-bottom: .6rem; }
.gt-prod-modal-desc p:last-child { margin-bottom: 0; }
.gt-prod-modal-desc ul { list-style: none; padding: 0; margin: .5rem 0 0; }
.gt-prod-modal-desc ul li { position: relative; padding-left: 16px; margin-bottom: 6px; }
.gt-prod-modal-desc ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gt-orange); }
.gt-prod-modal-foot { padding: 20px 32px 30px; border-top: 1px solid #f0f0f0; flex-shrink: 0; }
.gt-prod-modal-enquire { display: inline-flex; align-items: center; gap: 10px; background: var(--gt-green-mid); color: #fff; padding: 12px 32px; border-radius: 50px; font-size: .88rem; font-weight: 700; text-decoration: none; transition: background .22s, gap .2s; letter-spacing: .03em; }
.gt-prod-modal-enquire:hover { background: var(--gt-orange); color: #fff; text-decoration: none; gap: 14px; }
.gt-prod-modal-enquire svg { flex-shrink: 0; transition: transform .2s; }
.gt-prod-modal-enquire:hover svg { transform: translateX(4px); }

/* ── Products pagination ── */
.gt-prod-pagination { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gt-prod-pagination-info { font-size: .82rem; color: #bbb; font-weight: 500; text-align: center; letter-spacing: .01em; }
.gt-prod-pagination .pagination { gap: 4px; margin: 0; flex-wrap: wrap; justify-content: center; }
.gt-prod-pagination .page-link { border-radius: 9px !important; border: 1px solid #e5e5e5; color: #555; font-weight: 600; padding: 8px 16px; transition: all .2s; background: #fff; box-shadow: none !important; }
.gt-prod-pagination .page-link:hover { background: #f5f5f5; border-color: #ccc; color: var(--gt-green-mid); }
.gt-prod-pagination .page-item.active .page-link { background: var(--gt-green-mid); border-color: var(--gt-green-mid); color: #fff; }
.gt-prod-pagination .page-item.disabled .page-link { color: #ddd; border-color: #eee; background: #fafafa; }

/* ── Products page CTA strip ── */
.gt-prod-cta-strip { background: #f0f6ef; border-radius: 20px; padding: 30px 40px; display: flex; align-items: center; gap: 22px; position: relative; overflow: hidden; margin-top: 52px; }
.gt-prod-cta-icon { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--gt-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #fff; }
.gt-prod-cta-icon img { width: 28px; height: 28px; object-fit: contain; }
.gt-prod-cta-icon svg { width: 26px; height: 26px; color: var(--gt-green); }
.gt-prod-cta-text { flex: 1; min-width: 0; }
.gt-prod-cta-heading { font-size: 1rem; font-weight: 700; color: #1a2c1a; margin: 0 0 4px; line-height: 1.4; }
.gt-prod-cta-sub { font-size: .83rem; color: #555; margin: 0; line-height: 1.55; }
.gt-prod-cta-btn { display: inline-flex; align-items: center; gap: 9px; border: 1.5px solid #1a2c1a; color: #1a2c1a; background: transparent; padding: 11px 24px; border-radius: 50px; font-size: .84rem; font-weight: 600; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .2s, color .2s, gap .18s; }
.gt-prod-cta-btn:hover { background: #1a2c1a; color: #fff; text-decoration: none; gap: 13px; }
.gt-prod-cta-btn svg { flex-shrink: 0; transition: transform .18s; }
.gt-prod-cta-btn:hover svg { transform: translateX(3px); }
.gt-prod-cta-deco { position: absolute; right: 20px; bottom: -18px; opacity: .18; pointer-events: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .gt-prod-layout { flex-direction: column; }
    .gt-prod-sidebar { width: 100%; position: static; }
    .gt-prod-sidebar-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
}
@media (max-width: 767px) {
    .gt-cat-slide { width: 90px; }
    .gt-cat-slide-img-wrap { width: 76px; height: 76px; border-radius: 14px; }
    .gt-cat-slide-name { font-size: .7rem; margin-top: 9px; }
    .gt-products-page-section { padding: 36px 0 52px; }
    .gt-prod-modal .modal-content { flex-direction: column !important; min-height: auto; }
    .gt-prod-modal-left { width: 100%; height: 220px; flex-shrink: 0; }
    .gt-prod-modal-right { max-height: none; }
}



/* ══════════════════════════════════════════════════════════════════════════ */
/* §  ABOUT                                                                  */
/* ══════════════════════════════════════════════════════════════════════════ */

/* About section (home) */
.gt-about-section {
    padding: 88px 0;
}

/* Rounded card wrapping the entire about block */
.gt-about-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 6px 36px rgba(0,0,0,.12);
}

/* Background image — fills the card */
.gt-about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.gt-about-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.18);
    z-index: 1;
}

/* Fallback when no image is set */
.gt-about-bg--dark { background: var(--gt-green); }

.gt-about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    position: relative;
    z-index: 2;
}

/* Left: white gradient panel fades into image */
.gt-about-panel {
    background: linear-gradient(to right, #fff 72%, rgba(255,255,255,.15) 100%);
    display: flex;
    align-items: center;
}

.gt-about-panel-inner {
    width: 100%;
    padding: 60px 52px 60px 44px;
    display: flex;
    flex-direction: column;
}

.gt-about-sub {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gt-green-mid);
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.gt-about-h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--gt-green);
    margin-bottom: 16px;
    line-height: 1.25;
}

.gt-about-p {
    font-size: .9rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 24px;
}

.gt-about-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gt-about-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--gt-green);
}

.gt-about-check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gt-green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-about-check-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-about-cta {
    align-self: flex-start;
    background: var(--gt-green-mid);
    box-shadow: 0 4px 18px rgba(55,118,57,.3);
}
.gt-about-cta:hover {
    background: var(--gt-green-mid);
    filter: brightness(1.08);
    box-shadow: 0 8px 28px rgba(55,118,57,.38);
}

/* Right: transparent column — mission card at bottom */
.gt-about-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px 40px 40px 24px;
}

.gt-mission-card {
    background: rgba(255,255,255,.94);
    border-radius: 16px;
    padding: 22px 24px;
    max-width: 310px;
    width: 100%;
    box-shadow: 0 8px 36px rgba(0,0,0,.18);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.gt-mission-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(37,82,39,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-mission-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gt-green-mid);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-mission-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gt-mission-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gt-green);
    margin: 0;
}

.gt-mission-desc {
    font-size: .82rem;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

/* About page — shared utilities */
.abt-sublabel { display: block; font-size: .78rem; font-weight: 700; color: var(--gt-lime); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.abt-h2 { font-size: 1.85rem; font-weight: 700; color: #1a3e1c; line-height: 1.3; margin-bottom: 20px; overflow-wrap: break-word; }

/* About intro section */
.abt-intro-section { padding: 88px 0; background: #fff; }
.abt-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.abt-intro-label { display: block; font-size: .75rem; font-weight: 700; color: var(--gt-lime); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.abt-intro-heading { font-size: 2rem; font-weight: 700; color: #1a2c1a; line-height: 1.3; margin: 0 0 20px; }
.abt-intro-divider { display: block; width: 40px; height: 3px; background: var(--gt-orange); border-radius: 2px; margin: 0 0 28px; }
.abt-intro-desc { font-size: .95rem; line-height: 1.9; color: #666; margin-bottom: 36px; }
.abt-intro-desc p { margin-bottom: 14px; }
.abt-intro-desc p:last-child { margin-bottom: 0; }
.abt-intro-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gt-green-mid); color: #fff; padding: 13px 30px; border-radius: 50px; font-size: .88rem; font-weight: 700; text-decoration: none; transition: filter .2s, gap .18s; }
.abt-intro-cta:hover { filter: brightness(.88); color: #fff; text-decoration: none; gap: 14px; }
.abt-intro-cta svg { flex-shrink: 0; transition: transform .18s; }
.abt-intro-cta:hover svg { transform: translateX(4px); }
.abt-intro-img-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.12); }
.abt-intro-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* About — main split section (text + video) */
.abt-main-section { padding: 96px 0; background: #fff; }
.abt-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.abt-main-grid--novid { grid-template-columns: 1fr; max-width: 740px; margin: 0 auto; }
.abt-main-vid-col { display: flex; flex-direction: column; gap: 0; }
.abt-main-vid-label { display: block; font-size: .75rem; font-weight: 700; color: var(--gt-lime); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.abt-main-vid-wrap { overflow: hidden; border-radius: 16px; box-shadow: 0 28px 72px rgba(0,50,0,.14); background: #0a0a0a; position: relative; }
.abt-main-vid-wrap::before { content: ''; display: block; padding-top: 56.25%; }
.abt-main-vid-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.abt-main-vid-accent { display: block; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gt-lime) 0%, var(--gt-green) 100%); border-radius: 0 0 4px 4px; margin-top: -1px; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  NEWS / BLOG                                                            */
/* ══════════════════════════════════════════════════════════════════════════ */

/* ── Listing page ── */
.gt-news-section { padding: 64px 0 88px; background: #f7faf7; }

/* Featured post */
.gt-news-featured { display: grid; grid-template-columns: 1.05fr 1fr; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 28px rgba(37,82,39,.09); border: 1px solid #e4ede4; margin-bottom: 52px; }
.gt-news-feat-img-wrap { position: relative; overflow: hidden; display: block; min-height: 360px; }
.gt-news-feat-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.gt-news-featured:hover .gt-news-feat-img { transform: scale(1.04); }
.gt-news-feat-placeholder { width: 100%; height: 100%; min-height: 360px; display: flex; align-items: center; justify-content: center; background: #edf3ed; color: #b5ccb5; }
.gt-news-feat-body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.gt-news-feat-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(65,120,10,.1); color: var(--gt-green-mid); font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 13px; border-radius: 50px; width: fit-content; }
.gt-news-feat-title { font-size: 1.55rem; font-weight: 700; color: var(--gt-green); line-height: 1.35; margin: 0; }
.gt-news-feat-title a { color: inherit; text-decoration: none; transition: color .2s; }
.gt-news-feat-title a:hover { color: var(--gt-green-mid); }
.gt-news-feat-excerpt { font-size: .94rem; color: #666; line-height: 1.75; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.gt-news-feat-read { display: inline-flex; align-items: center; gap: 8px; background: var(--gt-green-mid); color: #fff; font-size: .86rem; font-weight: 700; padding: 11px 26px; border-radius: 8px; text-decoration: none; transition: background .2s, gap .2s; width: fit-content; margin-top: 6px; }
.gt-news-feat-read:hover { background: var(--gt-grass); color: #fff; gap: 12px; text-decoration: none; }
.gt-news-feat-read svg { flex-shrink: 0; transition: transform .2s; }
.gt-news-feat-read:hover svg { transform: translateX(3px); }

/* Grid heading */
.gt-news-grid-heading { font-size: .9rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .07em; padding-bottom: 14px; border-bottom: 2px solid #e4ede4; margin-bottom: 28px; }

/* Cards grid */
.gt-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gt-news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 14px rgba(37,82,39,.07); border: 1px solid #e4ede4; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.gt-news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(37,82,39,.13); }
.gt-news-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/2; background: #edf3ed; display: block; }
.gt-news-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.gt-news-card:hover .gt-news-img { transform: scale(1.06); }
.gt-news-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #c5d9c5; }
.gt-news-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.gt-news-date { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; color: #90a890; font-weight: 600; margin-bottom: 9px; }
.gt-news-date svg { flex-shrink: 0; }
.gt-news-title { font-size: .97rem; font-weight: 700; color: var(--gt-green); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gt-news-title a { color: inherit; text-decoration: none; transition: color .2s; }
.gt-news-title a:hover { color: var(--gt-green-mid); }
.gt-news-excerpt { font-size: .83rem; color: #777; line-height: 1.65; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gt-news-spacer { flex: 1; min-height: 12px; }
.gt-news-foot { display: flex; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid #eff4ef; }
.gt-news-read { display: inline-flex; align-items: center; gap: 6px; font-size: .81rem; font-weight: 700; color: var(--gt-green-mid); text-decoration: none; transition: gap .2s, color .2s; }
.gt-news-read:hover { color: var(--gt-green); gap: 10px; text-decoration: none; }
.gt-news-read svg { transition: transform .2s; }
.gt-news-read:hover svg { transform: translateX(3px); }

/* Pagination */
.gt-news-pagination { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 52px; }
.gt-news-pagination-info { font-size: .85rem; color: #7a9a7a; font-weight: 500; margin: 0; text-align: center; width: 100%; }
.gt-news-pagination .pagination { gap: 6px; margin: 0; flex-wrap: wrap; justify-content: center; }
.gt-news-pagination .page-link { border-radius: 8px !important; border: 2px solid #e0ece0; color: var(--gt-green); font-weight: 600; padding: 8px 16px; transition: all .2s; background: #fff; box-shadow: none !important; }
.gt-news-pagination .page-link:hover { background: rgba(65,120,10,.08); border-color: var(--gt-green-mid); color: var(--gt-green-mid); }
.gt-news-pagination .page-item.active .page-link { background: var(--gt-green-mid); border-color: var(--gt-green-mid); color: #fff; }
.gt-news-pagination .page-item.disabled .page-link { color: #ccc; border-color: #eee; background: #fafafa; }

/* Empty state */
.gt-news-empty { text-align: center; padding: 80px 0; color: #bbb; }
.gt-news-empty svg { display: block; margin: 0 auto 18px; color: #d2e8d2; }
.gt-news-empty p { font-size: 1rem; }

/* ── Single post ── */
.gt-news-single-section { padding: 60px 0 88px; background: #f7faf7; }
.gt-news-single-inner { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.gt-news-article { background: #fff; border-radius: 16px; box-shadow: 0 2px 20px rgba(37,82,39,.08); overflow: hidden; border: 1px solid #e8f0e8; }
.gt-news-article-cover { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.gt-news-article-body { padding: 40px 48px 48px; }
.gt-news-article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.gt-news-article-date { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: #90a890; font-weight: 600; background: #f0f8f0; padding: 5px 12px; border-radius: 50px; }
.gt-news-article-readtime { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: #90a890; font-weight: 600; background: #f0f8f0; padding: 5px 12px; border-radius: 50px; }
.gt-news-article-title { font-size: 1.85rem; font-weight: 700; color: var(--gt-green); line-height: 1.3; margin-bottom: 24px; }
.gt-news-article-divider { border: none; border-top: 2px solid #eaf2ea; margin: 0 0 32px; }
.gt-news-article-content { line-height: 1.95; color: #444; font-size: 1rem; }
.gt-news-article-content h2 { font-size: 1.35rem; font-weight: 700; color: var(--gt-green); margin-top: 2.2rem; margin-bottom: .8rem; }
.gt-news-article-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--gt-green); margin-top: 1.8rem; margin-bottom: .6rem; padding-left: 12px; border-left: 3px solid var(--gt-lime); }
.gt-news-article-content h4 { color: var(--gt-green); margin-top: 1.5rem; margin-bottom: .5rem; }
.gt-news-article-content ul, .gt-news-article-content ol { padding-left: 1.4rem; line-height: 2.1; }
.gt-news-article-content p { margin-bottom: 1.2em; }
.gt-news-article-content a { color: var(--gt-green-mid); text-decoration: underline; }
.gt-news-article-content blockquote { border-left: 4px solid var(--gt-lime); padding: 12px 20px; background: #f4faf4; margin: 1.5rem 0; border-radius: 0 8px 8px 0; color: #555; font-style: italic; }
.gt-news-article-content img { max-width: 100%; border-radius: 10px; margin: 1rem 0; }
.gt-news-article-footer { margin-top: 40px; padding-top: 26px; border-top: 2px solid #eaf2ea; }
.gt-news-article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gt-green); font-weight: 700; font-size: .88rem; text-decoration: none; border: 2px solid #cce0cc; padding: 10px 22px; border-radius: 8px; transition: background .2s, color .2s, border-color .2s; }
.gt-news-article-back:hover { background: var(--gt-green); border-color: var(--gt-green); color: #fff; text-decoration: none; }

/* Sidebar */
.gt-news-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.gt-news-sidebar-card { background: #fff; border-radius: 14px; box-shadow: 0 2px 16px rgba(37,82,39,.07); padding: 22px 20px; border: 1px solid #e8f0e8; }
.gt-news-sidebar-heading { font-size: .9rem; font-weight: 700; color: var(--gt-green); padding-bottom: 10px; margin-bottom: 16px; border-bottom: 2px solid #eaf2ea; display: flex; align-items: center; gap: 8px; }
.gt-news-sidebar-heading::before { content: ''; display: block; width: 3px; height: 14px; background: var(--gt-lime); border-radius: 2px; flex-shrink: 0; }
.gt-news-sidebar-item { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid #f0f5f0; }
.gt-news-sidebar-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.gt-news-sidebar-thumb { width: 68px; height: 52px; min-width: 68px; border-radius: 7px; object-fit: cover; background: #edf3ed; display: block; flex-shrink: 0; }
.gt-news-sidebar-info { flex: 1; min-width: 0; }
.gt-news-sidebar-info a { font-size: .82rem; font-weight: 600; color: #333; line-height: 1.45; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.gt-news-sidebar-info a:hover { color: var(--gt-green); }
.gt-news-sidebar-info span { font-size: .73rem; color: #bbb; margin-top: 4px; display: block; }
.gt-news-sidebar-all { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--gt-green-mid); color: #fff; border-radius: 8px; padding: 12px 20px; font-size: .86rem; font-weight: 700; text-decoration: none; transition: background .2s; }
.gt-news-sidebar-all:hover { background: var(--gt-grass); color: #fff; text-decoration: none; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  CONTACT                                                                */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-contact-section { padding: 50px 0; background: #f7faf7; }
.gt-contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 36px; align-items: start; }

/* Form card */
.gt-contact-form-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 24px rgba(37,82,39,.08); padding: 44px 48px; }
.gt-contact-form-title { font-size: 1.55rem; font-weight: 700; color: var(--gt-green); margin-bottom: 6px; }
.gt-contact-form-sub { font-size: .9rem; color: #999; margin-bottom: 28px; }
.gt-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gt-contact-field { display: flex; flex-direction: column; margin-top: 14px; }
.gt-contact-field input,
.gt-contact-field select,
.gt-contact-field textarea { width: 100%; border: 1.5px solid #dde8dd; border-radius: 9px; padding: 12px 16px; font-size: .9rem; color: #333; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; font-family: inherit; }
.gt-contact-field input::placeholder,
.gt-contact-field textarea::placeholder { color: #c0cfc0; }
.gt-contact-field input:focus,
.gt-contact-field select:focus,
.gt-contact-field textarea:focus { border-color: var(--gt-lime); box-shadow: 0 0 0 3px rgba(141,198,63,.13); }
.gt-contact-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; padding-right: 38px; cursor: pointer; color: #555; }
.gt-contact-field textarea { resize: vertical; min-height: 150px; }
.gt-contact-submit { display: inline-flex; align-items: center; gap: 9px; background: var(--gt-green-mid); color: #fff; border: none; border-radius: 50px; padding: 13px 32px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s; margin-top: 22px; }
.gt-contact-submit:hover { background: var(--gt-grass); transform: translateY(-1px); }
.gt-contact-msg { padding: 12px 16px; border-radius: 8px; font-size: .88rem; margin-bottom: 4px; margin-top: 14px; display: none; }
.gt-contact-msg.show { display: block; }
.gt-contact-msg--success { background: #f0fae5; border: 1px solid #b8e080; color: #2e5c1a; }
.gt-contact-msg--error   { background: #fdf0f0; border: 1px solid #f0b8b8; color: #8c1a1a; }

/* Info column — separated full-width stacked cards */
.gt-contact-info-card { display: flex; flex-direction: column; gap: 10px; }
.gt-contact-info-title { font-size: 1.1rem; font-weight: 700; color: var(--gt-green); padding-bottom: 10px; border-bottom: 2px solid #eaf2ea; margin-bottom: 2px; }
.gt-contact-info-grid { display: flex; flex-direction: column; gap: 8px; }
.gt-contact-info-item { display: flex; flex-direction: row; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid #e4ede4; border-radius: 12px; padding: 14px 16px; box-shadow: 0 1px 8px rgba(37,82,39,.05); transition: box-shadow .22s, transform .22s; }
.gt-contact-info-item:hover { box-shadow: 0 6px 20px rgba(37,82,39,.12); transform: translateY(-2px); }
.gt-contact-info-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; background: rgba(141,198,63,.15); display: flex; align-items: center; justify-content: center; color: var(--gt-green); flex-shrink: 0; margin-top: 1px; font-size: 1rem; }
.gt-contact-info-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gt-contact-info-label { font-size: .84rem; font-weight: 700; color: var(--gt-green); }
.gt-contact-info-value { font-size: .84rem; color: #555; line-height: 1.6; }
.gt-contact-info-value a { color: #555; text-decoration: none; display: block; transition: color .2s; }
.gt-contact-info-value a:hover { color: var(--gt-green); }

/* Social — own card at bottom */
.gt-contact-social { display: flex; gap: 8px; flex-wrap: wrap; padding: 4px 0; }
.gt-contact-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(141,198,63,.13); color: var(--gt-green); display: flex; align-items: center; justify-content: center; font-size: .88rem; text-decoration: none; transition: background .2s, color .2s; }
.gt-contact-social a:hover { background: var(--gt-lime); color: #fff; }
.gt-contact-social a i.fab { font-family: "Font Awesome 5 Brands" !important; font-weight: 400 !important; }
.gt-contact-social a i.fas { font-family: "Font Awesome 5 Free" !important; font-weight: 900 !important; }

/* Map — contained inside container, styled border */
.gt-contact-map { position: relative; margin-top: 52px; }
.gt-contact-map-frame { border-radius: 16px; overflow: hidden; border: 1.5px solid #d5e8d5; box-shadow: 0 4px 28px rgba(37,82,39,.1); position: relative; }
.gt-contact-map-frame iframe { width: 100%; height: 380px; display: block; border: 0; }
.gt-contact-map-card { position: absolute; bottom: 24px; left: 24px; background: #fff; border-radius: 14px; box-shadow: 0 8px 36px rgba(0,0,0,.16); padding: 20px 24px; max-width: 270px; z-index: 2; }
.gt-contact-map-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.gt-contact-map-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(141,198,63,.15); display: flex; align-items: center; justify-content: center; color: var(--gt-green); flex-shrink: 0; font-size: .9rem; }
.gt-contact-map-title { font-size: 1rem; font-weight: 700; color: var(--gt-green); }
.gt-contact-map-card p { font-size: .82rem; color: #777; line-height: 1.65; margin: 0; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  LEGAL                                                                  */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-legal-tabs-bar { background: #f4f9f4; border-bottom: 2px solid #e0ece0; }
.gt-legal-tabs-nav { display: flex; width: 100%; gap: 0; padding: 0; margin: 0; list-style: none; overflow-x: auto; }
.gt-legal-tabs-nav li a { display: block; padding: 16px 32px; font-size: .95rem; font-weight: 600; color: #555; text-decoration: none; border-bottom: 3px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap; }
.gt-legal-tabs-nav li a:hover { color: var(--gt-green); border-bottom-color: var(--gt-lime); }
.gt-legal-tabs-nav li a.active { color: var(--gt-green); border-bottom-color: var(--gt-green); background: rgba(255,255,255,.7); }
.gt-legal-section { padding: 60px 0; background: #f7faf7; }
.gt-legal-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 32px rgba(37,82,39,.08); padding: 56px 64px; border: 1px solid #eaf2ea; }
.gt-legal-head { display: flex; align-items: flex-start; gap: 20px; padding-bottom: 28px; border-bottom: 2px solid #eaf2ea; margin-bottom: 36px; }
.gt-legal-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--gt-green) 0%, var(--gt-green-mid) 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0; }
.gt-legal-title { font-size: 1.75rem; font-weight: 700; color: var(--gt-green); margin: 0 0 6px; line-height: 1.25; }
.gt-legal-updated { font-size: .82rem; color: #aaa; margin: 0; }
.gt-legal-body { font-size: .97rem; line-height: 1.9; color: #4a4a4a; }
.gt-legal-body h3 { font-size: 1rem; font-weight: 700; color: var(--gt-green); margin-top: 2rem; margin-bottom: .6rem; padding-left: 12px; border-left: 3px solid var(--gt-lime); line-height: 1.5; }
.gt-legal-body p { margin-bottom: 1rem; }
.gt-legal-body a { color: var(--gt-green-mid); text-decoration: underline; }
.gt-legal-body a:hover { color: var(--gt-green); }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  DOWNLOADS                                                              */
/* ══════════════════════════════════════════════════════════════════════════ */

.downloads-section { background: var(--gt-bg-light); }
.dl-list { display: flex; flex-direction: column; gap: 20px; }
.dl-banner { display: flex; align-items: center; gap: 24px; background: #fff; border: 1.5px solid #d5e8d5; border-radius: 14px; padding: 26px 30px; border-left: 5px solid var(--gt-lime); box-shadow: 0 3px 20px rgba(37,82,39,.07); transition: box-shadow .25s, transform .22s, border-color .22s; }
.dl-banner:hover { box-shadow: 0 10px 38px rgba(37,82,39,.14); transform: translateY(-3px); border-color: var(--gt-lime); }
.dl-banner-icon { font-size: 3rem; color: #c0392b; line-height: 1; flex-shrink: 0; }
.dl-banner-body { flex: 1; }
.dl-banner-title { font-size: 1.1rem; font-weight: 700; color: #1a3e1c; margin-bottom: 6px; }
.dl-banner-desc { font-size: .87rem; color: #666; line-height: 1.65; margin-bottom: 8px; }
.dl-banner-size { font-size: .75rem; font-weight: 600; color: #888; background: #f0f5f0; padding: 3px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; }
.dl-banner-action { flex-shrink: 0; }
.dl-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--gt-green); color: #fff; padding: 12px 26px; border-radius: 8px; font-size: .88rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s, transform .15s; }
.dl-btn:hover { background: var(--gt-orange); color: #fff; text-decoration: none; transform: scale(1.03); }
.dl-btn--soon { background: #b5c8b5; cursor: default; }
.dl-btn--soon:hover { background: #b5c8b5; transform: none; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  CTA                                                                    */
/* ══════════════════════════════════════════════════════════════════════════ */

.cta-section {
    background: #1d4220;
    border-top: 3px solid var(--gt-lime);
    padding: 44px 0;
    clear: both;
    width: 100%;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: nowrap;
}

.cta-text { flex: 1; min-width: 0; }
.cta-text h2 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0 0 4px; }
.cta-text p  { color: rgba(255,255,255,.6); margin: 0; font-size: .84rem; }

.cta-contacts { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    white-space: nowrap;
    transition: border-color .2s, background .2s;
}
.cta-contact-item:hover { border-color: var(--gt-lime); background: rgba(141,198,63,.1); color: #fff; text-decoration: none; }
.cta-contact-item i { color: var(--gt-lime); font-size: .85rem; flex-shrink: 0; font-family: "Font Awesome 5 Free" !important; font-weight: 900 !important; }
.cta-contact-info { display: flex; flex-direction: column; line-height: 1.3; }
.cta-contact-info span   { font-size: .68rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; }
.cta-contact-info strong { font-size: .84rem; font-weight: 700; color: #fff; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gt-lime);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .15s;
}
.cta-btn:hover { background: #7ab834; color: #fff; text-decoration: none; transform: translateY(-1px); }
.cta-partner-logo { max-height: 60px; width: auto; object-fit: contain; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  FAQ                                                                    */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-faq-section { background: var(--gt-bg-light); }

.gt-accordion { display: flex; flex-direction: column; gap: 12px; }

.gt-acc-item {
    background: #fff;
    border: 1px solid var(--gt-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(37,82,39,.05);
}

.gt-acc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    text-align: left;
    font-size: .92rem;
    font-weight: 700;
    color: var(--gt-green);
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: background .2s;
}
.gt-acc-toggle:hover { background: rgba(37,82,39,.03); }
.gt-acc-toggle:focus { outline: none; }
.gt-acc-toggle:focus-visible { outline: 2px solid var(--gt-green-mid); outline-offset: -2px; border-radius: 10px; }

.gt-acc-toggle .gt-acc-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gt-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    transition: transform .3s;
}

.gt-acc-item.open .gt-acc-chevron { transform: rotate(180deg); }

.gt-acc-body {
    display: none;
    padding: 0 24px 20px 24px;
    font-size: .88rem;
    line-height: 1.85;
    color: var(--gt-text);
    text-align: start;
}
.gt-acc-item.open .gt-acc-body { display: block; }
[dir="rtl"] .gt-acc-body { padding: 0 24px 20px 24px; text-align: right; }

/* Legacy bootstrap accordion fallback */
.faq-con { background: var(--gt-bg-light); }
.faq-box .card { border-radius: 10px !important; border: 1px solid var(--gt-border) !important; margin-bottom: 10px; box-shadow: 0 2px 10px rgba(37,82,39,.05); }
.faq-box .card-header { background: #fff !important; border-bottom: none !important; }
.faq-box .card-header h5 button { color: var(--gt-green) !important; font-weight: 700 !important; font-size: .92rem !important; width: 100%; text-align: left; }
.faq-box .card-body { font-size: .88rem; color: var(--gt-text); line-height: 1.85; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  PARTNERS                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */

.logo-con {
    position: relative;
    z-index: 1;
    clear: both;
    padding: 16px 0;
    border-bottom: 1px solid var(--gt-border);
    background: #fff;
}

.logo-con .container > ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #e8eee8;
    border-radius: 12px;
    overflow: hidden;
}

.logo-con .container > ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border-right: 1px solid #e8eee8;
    background: #fff;
    transition: background .2s;
}
.logo-con .container > ul li:last-child { border-right: none; }
.logo-con .container > ul li:hover { background: var(--gt-bg-light); }

.logo-con .container > ul li figure { margin: 0; }
.logo-con .container > ul li figure img {
    max-height: 64px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  WHATSAPP                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); color: #fff; text-decoration: none; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  MISC                                                                   */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Preloader */
.g-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .55s ease, visibility .55s ease;
}

.g-loader.g-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Ring wrapper — holds the spinning arc + centre letter */
.g-loader__wrap {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Faint background track */
.g-loader__wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(37,82,39,.1);
}

/* Spinning lime arc */
.g-loader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gt-lime);
    border-right-color: var(--gt-lime);
    animation: g-spin .9s linear infinite;
}

/* Centre "G" letter (fallback when no logo) */
.g-loader__letter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gt-green);
    font-family: 'Cairo', sans-serif;
    line-height: 1;
    user-select: none;
}

/* Centre logo image */
.g-loader__logo {
    max-height: 52px;
    max-width: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Brand name below the ring */
.g-loader__brand {
    font-size: .7rem;
    font-weight: 700;
    color: var(--gt-text-light);
    text-transform: uppercase;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    max-width: 220px;
}

@keyframes g-spin { to { transform: rotate(360deg); } }

/* Scroll-to-top */
.gt-scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gt-green-mid);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(65,120,10,.22);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .2s;
}
.gt-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gt-scroll-top:hover { background: var(--gt-green); }

/* Page sub-banner (new gt- version) */
.gt-page-header {
    background: linear-gradient(135deg, var(--gt-green) 0%, var(--gt-green) 60%, var(--gt-lime) 100%);
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gt-page-header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(141,198,63,.08);
    pointer-events: none;
}
.gt-page-header-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.gt-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gt-breadcrumb li { font-size: .84rem; color: rgba(255,255,255,.7); }
.gt-breadcrumb li a { color: var(--gt-lime); text-decoration: none; transition: color .2s; }
.gt-breadcrumb li a:hover { color: #fff; }
.gt-breadcrumb li + li::before { content: '/'; margin-right: 6px; color: rgba(255,255,255,.4); }

/* Legacy sub-banner for pages still using the old template */
.sub-banner {
    background: linear-gradient(135deg, var(--gt-green-mid) 0%, var(--gt-green-mid) 100%);
    padding: 52px 0;
    text-align: center;
}
.sub-banner-inner-con {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
}
.sub-banner-img { display: none; } /* hide decorative images */
.sub-banner-title { flex: 1; text-align: center; }
.sub-banner-title h1 { font-size: clamp(1.5rem, 4vw, 2.4rem) !important; color: #fff !important; line-height: 1.25 !important; }
.breadcrum ul { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px !important; }
.breadcrum ul li { font-size: .84rem; color: var(--gt-lime); text-decoration: none; font-weight: 600; }
.breadcrum ul li a { color: rgba(255,255,255,.75); text-decoration: none; font-weight: 400; }
.breadcrum ul li a:hover { color: #fff; }

/* Section header */
.gt-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.gt-section-header .gt-sub {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gt-green-mid);
    margin-bottom: 12px;
}

.gt-section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--gt-green);
    margin: 0;
}

/* Generic section heading used by old template parts */
.generic-title { margin-bottom: 40px; }
.generic-title span { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; color: var(--gt-lime); margin-bottom: 10px; }
.generic-title h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--gt-green); }

/* ══════════════════════════════════════════════════════════════════════════ */
/* §  HOME CATEGORIES                                                         */
/* ══════════════════════════════════════════════════════════════════════════ */

.gt-hcats-section { background: #f8f8f4; }

.gt-hcats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gt-hcat {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
    transition: transform .22s, box-shadow .22s;
}

.gt-hcat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.gt-hcat-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #dde8dd;
    overflow: hidden;
}

.gt-hcat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.gt-hcat:hover .gt-hcat-img { transform: scale(1.06); }

.gt-hcat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.gt-hcat-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-green-mid);
    opacity: .45;
}

.gt-hcat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,40,20,.78) 0%, rgba(0,40,20,.02) 55%);
}

.gt-hcat-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    color: #fff;
    font-weight: 700;
    font-size: .94rem;
    line-height: 1.3;
    text-align: center;
}

/* Video section */
.gt-videos-section { background: var(--gt-green); overflow: hidden; }
.gt-videos-section .gt-section-header .gt-sub,
.gt-videos-section .gt-section-header h2 { color: #fff; }

.gt-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 44px;
}

.gt-video-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 36px rgba(0,0,0,.4);
}

.gt-video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    outline: none;
    background: #000;
}

/* Legacy video section */
.home-videos-section { background: var(--gt-green); overflow: hidden; }
.home-videos-section .generic-title span { color: var(--gt-green); }
.home-videos-section .generic-title h2 { color: #fff; }
.home-videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.home-video-wrap { border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 8px 36px rgba(0,0,0,.4); }
.home-video-player { display: block; width: 100%; aspect-ratio: 16/9; background: #000; outline: none; }
.home-videos-side { position: absolute; top: 50%; transform: translateY(-50%); z-index: 0; pointer-events: none; }
.home-videos-side--left  { left: 0; }
.home-videos-side--right { right: 0; }
.home-videos-side img { max-height: 240px; opacity: .35; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  PAGE HERO                                                               */
/* ══════════════════════════════════════════════════════════════════════════ */

.ph-section {
    position: relative;
    overflow: hidden;
    background: #f5f3ef;
    min-height: 480px;
}
.ph-section--home { min-height: 680px; }

.ph-image-col {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.ph-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        #fff  0%,
        #fff  26%,
        rgba(255,255,255,.9)  42%,
        rgba(255,255,255,.45) 60%,
        rgba(255,255,255,0)   78%
    );
}

.ph-body {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 480px;
}

.ph-content {
    width: 56%;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 72px clamp(32px, 4vw, 64px) 72px clamp(24px, 7vw, 120px);
}

.ph-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gt-green-mid);
    background: rgba(65,120,10,.1);
    border-radius: 20px;
    padding: 5px 14px;
    width: fit-content;
}

.ph-h1 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--gt-green);
    margin: 0;
}

.ph-h1-hl { color: var(--gt-green-mid); }
.ph-h1-line2 { color: inherit; }

.ph-divider { width: 56px; height: 3px; background: var(--gt-lime); border-radius: 2px; }

.ph-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.72;
    margin: 0;
    max-width: 460px;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gt-green-mid);
    color: #fff;
    border-radius: 50px;
    padding: 13px 30px;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: background .2s, gap .18s;
}
.ph-btn:hover { filter: brightness(.88); color: #fff; gap: 14px; }

.ph-features { display: flex; gap: 20px; flex-wrap: wrap; }
.ph-feat { display: flex; align-items: center; gap: 10px; }

.ph-feat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-green-mid);
    flex-shrink: 0;
}

.ph-feat-icon svg { width: 34px; height: 34px; }
.ph-feat-label { font-size: 1rem; font-weight: 700; color: #333; }

/* Page Hero – RTL */
[dir="rtl"] .ph-overlay {
    background: linear-gradient(
        270deg,
        #fff  0%,
        #fff  26%,
        rgba(255,255,255,.9)  42%,
        rgba(255,255,255,.45) 60%,
        rgba(255,255,255,0)   78%
    );
}

[dir="rtl"] .ph-content {
    margin-left: auto;
    margin-right: 0;
    max-width: 780px;
    padding: 72px clamp(24px, 7vw, 120px) 72px clamp(32px, 4vw, 64px);
    text-align: right;
}

[dir="rtl"] .ph-desc { text-align: right; max-width: none; }
[dir="rtl"] .ph-btn svg { transform: scaleX(-1); }

/* Page Hero – Responsive */
@media (max-width: 991px) {
    .ph-section { min-height: 0; display: flex; flex-direction: column; }
    .ph-body { order: 1; flex-direction: column; min-height: 0; align-items: stretch; }
    .ph-image-col { order: 2; position: relative; height: 300px; }
    .ph-overlay { display: none; }
    .ph-content { width: 100%; padding: 48px 40px; }
    [dir="rtl"] .ph-content { margin-left: 0; padding: 48px 40px; }
}

@media (max-width: 767px) {
    .ph-content { padding: 40px 20px; gap: 16px; }
    [dir="rtl"] .ph-content { padding: 40px 20px; }
    .ph-h1 { font-size: 1.85rem; }
    .ph-image-col { height: 240px; }
}


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  RTL OVERRIDES                                                          */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Nav */
[dir="rtl"] .gt-nav-links { direction: rtl; }
[dir="rtl"] .gt-lang-btn { flex-direction: row-reverse; }
[dir="rtl"] .gt-drawer-head { justify-content: flex-start; }

/* Hero */
[dir="rtl"] .gt-hero-overlay {
    background: linear-gradient(270deg, #fff 0%, #fff 26%, rgba(255,255,255,.9) 42%, rgba(255,255,255,.45) 60%, rgba(255,255,255,0) 78%);
}
[dir="rtl"] .gt-hero-content { margin-left: auto; padding: 72px clamp(24px,7vw,120px) 72px clamp(32px,4vw,64px); text-align: right; }
[dir="rtl"] .gt-hero-desc { text-align: right; max-width: none; }
[dir="rtl"] .gt-hero-dots { left: auto; right: 32px; }

/* Features */
[dir="rtl"] .gt-feat::after { right: auto; left: 0; }

/* Footer */
[dir="rtl"] .gt-footer-grid { direction: rtl; }
[dir="rtl"] .gt-footer-brand { text-align: right; }
[dir="rtl"] .gt-footer-heading { text-align: right; }
[dir="rtl"] .gt-footer-catalog-text { text-align: right; }
[dir="rtl"] .gt-footer-nl-text { text-align: right; }
[dir="rtl"] .gt-footer-nl-group { padding: 4px 16px 4px 4px; }
[dir="rtl"] .gt-footer-nl-input { direction: rtl; text-align: right; }
[dir="rtl"] .gt-footer-nl-btn svg { transform: scaleX(-1); }
[dir="rtl"] .gt-footer-bottom-inner { direction: rtl; }

/* Contact */
[dir="rtl"] .gt-contact-grid { direction: rtl; }
[dir="rtl"] .gt-contact-form-title,
[dir="rtl"] .gt-contact-form-sub { text-align: right; }
[dir="rtl"] .gt-contact-form-card form { text-align: right; }
[dir="rtl"] .gt-contact-submit svg { transform: scaleX(-1); }
[dir="rtl"] .gt-contact-field input,
[dir="rtl"] .gt-contact-field textarea { direction: rtl; text-align: right; }
[dir="rtl"] .gt-contact-field select { background-position: left 14px center; padding-right: 16px; padding-left: 38px; }
[dir="rtl"] .gt-contact-info-title { text-align: right; }
[dir="rtl"] .gt-contact-info-text { text-align: right; }
[dir="rtl"] .gt-contact-info-value a[href^="tel:"],
[dir="rtl"] .gt-contact-info-value a[href^="mailto:"] { direction: ltr; text-align: left; }
[dir="rtl"] .gt-contact-map-card { left: auto; right: 24px; text-align: right; direction: rtl; }
[dir="rtl"] .gt-contact-social { justify-content: flex-start; }

/* Blog / News */
/* News */
[dir="rtl"] .gt-news-pagination-info { text-align: center; }
[dir="rtl"] .gt-news-grid-heading { text-align: right; }
[dir="rtl"] .gt-news-feat-body { text-align: right; }
[dir="rtl"] .gt-news-feat-read { flex-direction: row-reverse; }
[dir="rtl"] .gt-news-feat-read:hover svg { transform: translateX(-3px); }
[dir="rtl"] .gt-news-date { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .gt-news-title { text-align: right; }
[dir="rtl"] .gt-news-excerpt { text-align: right; }
[dir="rtl"] .gt-news-read { flex-direction: row-reverse; }
[dir="rtl"] .gt-news-read:hover svg { transform: translateX(-3px); }
[dir="rtl"] .gt-news-article-meta { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .gt-news-article-title { text-align: right; }
[dir="rtl"] .gt-news-article-content { text-align: right; }
[dir="rtl"] .gt-news-article-content h3 { padding-left: 0; padding-right: 12px; border-left: none; border-right: 3px solid var(--gt-lime); }
[dir="rtl"] .gt-news-article-content ul,
[dir="rtl"] .gt-news-article-content ol { padding-left: 0; padding-right: 1.4rem; }
[dir="rtl"] .gt-news-article-content blockquote { border-left: none; border-right: 4px solid var(--gt-lime); border-radius: 8px 0 0 8px; }
[dir="rtl"] .gt-news-article-back { flex-direction: row-reverse; }
[dir="rtl"] .gt-news-article-back svg { transform: scaleX(-1); }
[dir="rtl"] .gt-news-sidebar-heading { text-align: right; }
[dir="rtl"] .gt-news-sidebar-heading::before { margin-left: 0; }
[dir="rtl"] .gt-news-sidebar-item { flex-direction: row-reverse; }
[dir="rtl"] .gt-news-sidebar-info a,
[dir="rtl"] .gt-news-sidebar-info span { text-align: right; display: block; }

/* Products */
[dir="rtl"] .pcard-badge { right: auto; left: 6px; }
[dir="rtl"] .pcard-title { text-align: right; }
[dir="rtl"] .pcard-desc { text-align: right; }
[dir="rtl"] .pcard-desc ul li { padding-left: 0; padding-right: 16px; }
[dir="rtl"] .pcard-desc ul li::before { left: auto; right: 0; }

/* About page */
[dir="rtl"] .abt-text-col { text-align: right; }
[dir="rtl"] .abt-intro-label { text-align: right; letter-spacing: 0; }
[dir="rtl"] .abt-intro-heading { text-align: right; }
[dir="rtl"] .abt-intro-divider { margin-right: 0; margin-left: auto; }
[dir="rtl"] .abt-intro-desc { text-align: right; }
[dir="rtl"] .abt-intro-cta { flex-direction: row; }
[dir="rtl"] .abt-intro-cta svg { transform: scaleX(-1); }
[dir="rtl"] .abt-intro-cta:hover svg { transform: scaleX(-1) translateX(-4px); }
[dir="rtl"] .abt-main-vid-label { text-align: right; letter-spacing: 0; }
[dir="rtl"] .abt-main-vid-accent { background: linear-gradient(90deg, var(--gt-green) 0%, var(--gt-lime) 100%); }
[dir="rtl"] .gt-prod-cta-deco { right: auto; left: 20px; transform: scaleX(-1); }
[dir="rtl"] .gt-prod-cta-heading,
[dir="rtl"] .gt-prod-cta-sub { text-align: right; }
[dir="rtl"] .gt-prod-cta-btn { flex-direction: row; }
[dir="rtl"] .gt-prod-cta-btn svg { transform: scaleX(-1); }
[dir="rtl"] .gt-prod-cta-btn:hover svg { transform: scaleX(-1) translateX(-3px); }
[dir="rtl"] .dl-banner { border-left: 1.5px solid #d5e8d5; border-right: 5px solid var(--gt-lime); }
[dir="rtl"] .dl-banner-body { text-align: right; }

/* Page header */
[dir="rtl"] .gt-breadcrumb li + li::before { margin-right: 0; margin-left: 6px; }

/* Products page */
[dir="rtl"] .gt-prod-card-badge { left: auto; right: 14px; }
[dir="rtl"] .gt-prod-card-sub,
[dir="rtl"] .gt-prod-card-tag,
[dir="rtl"] .gt-prod-card-title,
[dir="rtl"] .gt-prod-card-desc { text-align: right; }
[dir="rtl"] .gt-prod-card-btn { flex-direction: row-reverse; }
[dir="rtl"] .gt-prod-card-btn:hover svg { transform: translateX(-3px); }
[dir="rtl"] .gt-prod-count { text-align: right; }
[dir="rtl"] .gt-prod-pagination-info { text-align: center; }
[dir="rtl"] .gt-cat-slider { direction: rtl; }
[dir="rtl"] .gt-prod-sidebar-link.active { border-left: none; border-right: 3px solid var(--gt-lime); padding-left: 0; padding-right: 11px; }
[dir="rtl"] .gt-prod-sidebar-heading { text-align: right; letter-spacing: 0; }
[dir="rtl"] .gt-prod-modal .modal-content { flex-direction: row-reverse !important; }
[dir="rtl"] .gt-prod-modal-hr { margin: 0 0 18px auto; }
[dir="rtl"] .gt-prod-modal-tag,
[dir="rtl"] .gt-prod-modal-title,
[dir="rtl"] .gt-prod-modal-desc { text-align: right; }
[dir="rtl"] .gt-prod-modal-desc ul li { padding-left: 0; padding-right: 16px; }
[dir="rtl"] .gt-prod-modal-desc ul li::before { left: auto; right: 0; }
[dir="rtl"] .gt-prod-modal-foot { text-align: right; }
[dir="rtl"] .gt-prod-modal-enquire { flex-direction: row; }
[dir="rtl"] .gt-prod-modal-enquire svg { transform: scaleX(-1); }
[dir="rtl"] .gt-prod-modal-enquire:hover svg { transform: scaleX(-1) translateX(-4px); }

/* Legal */
[dir="rtl"] .gt-legal-title, [dir="rtl"] .gt-legal-updated { text-align: right; }
[dir="rtl"] .gt-legal-body { text-align: right; }
[dir="rtl"] .gt-legal-body h3 { padding-left: 0; padding-right: 12px; border-left: none; border-right: 3px solid var(--gt-lime); text-align: right; }

/* Products section (home) */
[dir="rtl"] .gt-products-sub, [dir="rtl"] .gt-products-title { text-align: right; }
[dir="rtl"] .gt-products-all svg { transform: scaleX(-1); }
[dir="rtl"] .gt-pc-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .gt-pc-title { text-align: right; }

/* About + Mission section (home) — RTL flips panel to right side */
[dir="rtl"] .gt-about-panel { background: linear-gradient(to left, #fff 72%, rgba(255,255,255,.15) 100%); }
[dir="rtl"] .gt-about-panel-inner { padding: 60px 44px 60px 52px; text-align: right; }
[dir="rtl"] .gt-about-right { padding: 24px 24px 40px 40px; }
[dir="rtl"] .gt-mission-card { flex-direction: row-reverse; }
[dir="rtl"] .gt-mission-text { text-align: right; }

/* Stats */
[dir="rtl"] .gt-stats-row { direction: rtl; }
[dir="rtl"] .gt-stat { border-right: none; border-left: 1px solid #ddddd5; }
[dir="rtl"] .gt-stat:last-child { border-left: none; }

/* CTA */
[dir="rtl"] .cta-text h2, [dir="rtl"] .cta-text p { text-align: right; }
[dir="rtl"] .cta-contacts { flex-direction: row-reverse; }
[dir="rtl"] .cta-contact-item { flex-direction: row-reverse; }
[dir="rtl"] .cta-contact-info { text-align: right; }

/* WhatsApp — moves to right in RTL */
[dir="rtl"] .whatsapp-float { left: auto; right: 28px; }
/* Scroll-to-top — moves to left in RTL (opposite of WhatsApp) */
[dir="rtl"] .gt-scroll-top { right: auto; left: 28px; }

/* FAQ old template */
[dir="rtl"] .faq-box .card-header h5 button { text-align: right; padding-left: 40px; padding-right: 30px; }
[dir="rtl"] .faq-box .card-body { padding: 0 30px 25px 65px; text-align: right; direction: rtl; }

/* Sub-banner old */
[dir="rtl"] .breadcrum ul { direction: rtl; }
[dir="rtl"] .sub-banner-title h1 { direction: rtl; }


/* ══════════════════════════════════════════════════════════════════════════ */
/* §  RESPONSIVE                                                             */
/* ══════════════════════════════════════════════════════════════════════════ */

/* Utilities — section padding overrides (largest first) */
@media (max-width: 1199px) {
    .gt-section { padding: 72px 0; }
    .padding-top    { padding-top:    72px !important; }
    .padding-bottom { padding-bottom: 72px !important; }
}

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
    /* Navbar */
    .gt-nav-inner .gt-nav-links { display: none; }
    .gt-nav-inner .gt-lang-btn  { display: none; }
    .gt-toggler                 { display: flex; margin-left: auto; }
    [dir="rtl"] .gt-nav-inner   { flex-direction: row-reverse; }

    /* Hero */
    .gt-hero { height: auto; }

    /* Features */
    .gt-features-row { flex-wrap: wrap; }
    .gt-feat { flex: 1 1 33.33%; }
    .gt-feat::after { display: none; }
    .gt-feat:not(:nth-child(3)):not(:nth-child(6))::after { display: block; }
    .gt-feat:nth-child(3n)::after { display: none; }

    /* Footer grid */
    .gt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* CTA */
    .cta-inner { flex-wrap: wrap; gap: 18px; }
    .cta-contacts { flex-wrap: wrap; gap: 10px; }

    /* About */
    .abt-main-grid { gap: 44px; }
    .dl-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 20px; }
    .dl-banner-action { width: 100%; }
    .dl-btn { width: 100%; justify-content: center; }

    /* Videos */
    .home-videos-side { display: none; }
    .gt-videos-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Products section (home) */
    .gt-products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .gt-products-slider .gt-pc { flex: 0 0 calc(50% - 11px); }
    .gt-cat-prev { left: -12px; }
    .gt-cat-next { right: -12px; }
    .gt-products-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* About section (home) */
    .gt-about-body { grid-template-columns: 1fr; }
    .gt-about-panel { background: #fff; }
    [dir="rtl"] .gt-about-panel { background: #fff; }
    .gt-about-panel-inner { padding: 44px 28px; }
    [dir="rtl"] .gt-about-panel-inner { padding: 44px 28px; text-align: right; }
    .gt-about-right { justify-content: center; align-items: center; padding: 36px 28px 36px; }
    [dir="rtl"] .gt-about-right { justify-content: center; padding: 36px 28px 36px; }
    .gt-mission-card { max-width: 100%; }
    .gt-mission-text { min-width: 0; }

    /* Stats */
    .gt-stats-row { grid-template-columns: 1fr 1fr; }
    .gt-stat:nth-child(2) { border-right: none; }
    .gt-stat:nth-child(3) { border-top: 1px solid #ddddd5; }
    [dir="rtl"] .gt-stat:nth-child(2) { border-left: none; }
}

/* Medium — ≤ 991px */
@media (max-width: 991px) {
    .gt-section { padding: 56px 0; }
    .padding-top    { padding-top:    56px !important; }
    .padding-bottom { padding-bottom: 56px !important; }

    /* News */
    .gt-news-featured { grid-template-columns: 1fr; }
    .gt-news-feat-img-wrap { min-height: 260px; max-height: 320px; }
    .gt-news-feat-body { padding: 32px 36px; }
    .gt-news-grid { grid-template-columns: repeat(2, 1fr); }
    .gt-news-single-inner { grid-template-columns: 1fr 260px; gap: 24px; }
    .gt-news-article-body { padding: 32px 32px 40px; }
    .gt-news-article-title { font-size: 1.6rem; }

    /* Contact */
    .gt-contact-grid { grid-template-columns: 1fr; }
    .gt-contact-form-card { padding: 36px 32px; }
}

/* Mobile — ≤ 767px */
@media (max-width: 767px) {
    /* Section padding */
    .gt-section { padding: 44px 0; }
    .padding-top    { padding-top:    44px !important; }
    .padding-bottom { padding-bottom: 44px !important; }

    /* Hero */
    .gt-hero { min-height: 0; flex-direction: column; align-items: stretch; }
    .gt-hero-media-col { position: relative; height: 300px; }
    .gt-hero-overlay { display: none; }
    .gt-hero-content { width: 100%; padding: 48px 40px; }
    [dir="rtl"] .gt-hero-content { margin-left: 0; padding: 48px 40px; }

    /* Features */
    .gt-feat { flex: 1 1 50%; }
    .gt-feat::after { display: none; }
    .gt-feat:nth-child(odd):not(:nth-last-child(-n+1))::after { display: block; }

    /* Footer */
    .gt-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .gt-footer-brand { grid-column: span 2; align-items: center; text-align: center; }
    .gt-footer-newsletter { grid-column: span 2; }
    .gt-footer-brand-address { justify-content: center; }
    .gt-footer-catalog { align-items: flex-start; }
    .gt-footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    .gt-footer-social { justify-content: center; }
    .gt-hitech-credit { justify-content: center; }

    /* Home videos */
    .home-videos-grid { grid-template-columns: 1fr; gap: 20px; }

    /* News */
    .gt-news-section { padding: 44px 0 60px; }
    .gt-news-featured { margin-bottom: 36px; }
    .gt-news-feat-body { padding: 28px 24px 32px; }
    .gt-news-feat-title { font-size: 1.25rem; }
    .gt-news-grid { grid-template-columns: 1fr; }
    .gt-news-single-section { padding: 40px 0 60px; }
    .gt-news-single-inner { grid-template-columns: 1fr; }
    .gt-news-sidebar { order: 2; position: static; }
    .gt-news-article-body { padding: 24px 22px 32px; }
    .gt-news-article-title { font-size: 1.4rem; }

    /* Contact */
    .gt-contact-form-card { padding: 28px 20px; }
    .gt-contact-row { grid-template-columns: 1fr; }
    .gt-contact-map-frame iframe { height: 280px; }
    .gt-contact-map-card { left: 14px; right: 14px; max-width: none; bottom: 14px; }
    [dir="rtl"] .gt-contact-map-card { left: 14px; right: 14px; }

    /* About */
    .abt-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .abt-main-section { padding: 60px 0; }
    .gt-prod-cta-strip { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 22px; }
    [dir="rtl"] .gt-prod-cta-strip { flex-direction: column; }

    /* Legal */
    .gt-legal-section { padding: 36px 0; }
    .gt-legal-card { padding: 28px 18px; }
    .gt-legal-tabs-nav li a { padding: 10px 16px; font-size: .82rem; }
    .gt-legal-title { font-size: 1.4rem; }

    /* CTA */
    .cta-section { padding: 30px 0; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-contacts { flex-direction: column; align-items: flex-start; width: 100%; }
    [dir="rtl"] .cta-contacts { align-items: flex-end; }
    .cta-contact-item { width: 100%; justify-content: flex-start; }
    .cta-btn { width: 100%; justify-content: center; }

    /* Products section (home) */
    .gt-products-section { padding: 60px 0; }
    .gt-pc { height: 320px; }

    /* About section (home) */
    .gt-about-section { padding: 60px 0; }
    .gt-about-panel-inner { padding: 36px 20px; }
    .gt-about-right { padding: 28px 20px 28px; }
    [dir="rtl"] .gt-about-panel-inner { padding: 36px 20px; }
    [dir="rtl"] .gt-about-right { padding: 28px 20px 28px; }

    /* Stats */
    .gt-stats { padding: 36px 0; }
    .gt-stat-num { font-size: 1.8rem; }

    /* Mobile drawer RTL */
    [dir="rtl"] .gt-nav-drawer .gt-nav-links { align-items: stretch; }
    [dir="rtl"] .gt-nav-drawer .gt-nav-links li a { text-align: right; direction: rtl; }

    /* Sub-banner */
    .sub-banner { padding: 40px 0; }
}

@media (max-width: 767px) {
    .gt-hcats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {
    .gt-features-row { flex-direction: column; }
    .gt-feat { flex: none; width: 100%; padding: 20px 24px; flex-direction: row; justify-content: flex-start; text-align: left; gap: 16px; }
    .gt-feat::after { display: none; }
    .gt-feat:not(:last-child)::after { display: block; right: auto; left: auto; bottom: 0; top: auto; width: 55%; height: 1px; transform: translateX(-50%); left: 50%; }
    .gt-feat:last-child::after { display: none; }
    .gt-feat-label { text-align: left; max-width: none; }
    [dir="rtl"] .gt-feat { text-align: right; }
    [dir="rtl"] .gt-feat-label { text-align: right; }

    .gt-hero-content { padding: 40px 20px; gap: 16px; }
    [dir="rtl"] .gt-hero-content { padding: 40px 20px; }
    .gt-hero-h1 { font-size: 1.85rem; }
    .gt-hero-media-col { height: 240px; }

    /* Products (home) */
    .gt-products-grid { grid-template-columns: 1fr; }
    .gt-products-slider .gt-pc { flex: 0 0 calc(100% - 0px); }
    .gt-pc { height: auto; }
    /* Fix: absolutely-positioned image collapses when .gt-pc has height:auto */
    .gt-pc-img-area { flex: none; height: 200px; }

    /* Mission card — stack icon + text vertically on small screens */
    .gt-mission-card { flex-direction: column; gap: 12px; }
    [dir="rtl"] .gt-mission-card { flex-direction: column; }

    /* Stats */
    .gt-stats-row { grid-template-columns: 1fr; }
    .gt-stat { border-right: none; border-left: none; border-bottom: 1px solid #ddddd5; }
    .gt-stat:nth-child(3) { border-top: none; }
    .gt-stat:last-child { border-bottom: none; }
    [dir="rtl"] .gt-stat { border-left: none; }
}

/* About page — stack text + video on tablets before 767px breakpoint kicks in */
@media (max-width: 900px) {
    .abt-main-grid { grid-template-columns: 1fr; gap: 36px; }
    [dir="rtl"] .abt-main-grid { gap: 36px; }
    .abt-main-vid-col { width: 100%; }
}

/* Slider nav buttons — keep inside viewport on small screens */
@media (max-width: 767px) {
    .gt-cat-prev { left: 0; }
    .gt-cat-next { right: 0; }
    .gt-products-slider { padding-inline: 0; }
}

