/*
Theme Name: My Starter Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A clean blank WordPress starter theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-starter-theme
Tags: blank, starter, custom
*/

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    text-decoration: underline;
}

ul, ol {
    list-style: none;
}

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

body.elementor-page .site-main > .container {
    max-width: 100%;
    padding: 0;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
}

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

.site-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
}

.site-nav ul {
    display: flex;
    gap: 24px;
}

.site-nav ul li a {
    font-size: 0.95rem;
    color: #333333;
    transition: color 0.2s;
}

.site-nav ul li a:hover {
    color: #0073aa;
    text-decoration: none;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.site-main {
    min-height: 60vh;
    padding: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    text-align: center;
    font-size: 0.875rem;
    color: #666666;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #111111;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1em;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #005d8e;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #0073aa;
    color: #0073aa;
}

.btn-outline:hover {
    background-color: #0073aa;
    color: #ffffff;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .site-nav ul {
        gap: 16px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.125rem; }
}


/* =============================================
   SITE NAVBAR — Transparent -> Scrolled White
   ============================================= */

#site-navbar {
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

#site-navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .site-nav-inner { height: 80px; padding: 0 40px; }
}

.site-navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none !important;
}

.brand-name {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    transition: color 0.3s ease;
}

.brand-tagline {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    transition: color 0.3s ease;
}

#site-navbar.scrolled .brand-name    { color: #111111; }
#site-navbar.scrolled .brand-tagline { color: rgba(0, 0, 0, 0.50); }

#site-navbar .navbar-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50px;
    padding: 8px 16px !important;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
    text-decoration: none !important;
}

#site-navbar .navbar-nav .nav-link:hover,
#site-navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12);
}

#site-navbar.scrolled .navbar-nav .nav-link          { color: #333333 !important; }
#site-navbar.scrolled .navbar-nav .nav-link:hover,
#site-navbar.scrolled .navbar-nav .nav-link.active   { color: #111111 !important; background-color: rgba(0,0,0,0.06); }

.nav-arrow-icon {
    font-size: 0.85em;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

#site-navbar .dropdown.show .nav-arrow-icon,
#site-navbar .dropdown:focus-within .nav-arrow-icon {
    transform: rotate(180deg);
}

#site-navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 224px;
}

#site-navbar .dropdown-item {
    font-size: 0.875rem;
    padding: 9px 12px;
    border-radius: 8px;
    color: #444444;
    transition: background-color 0.15s ease, color 0.15s ease;
}

#site-navbar .dropdown-item:hover,
#site-navbar .dropdown-item:focus {
    background-color: #f3f4f6;
    color: #111111;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    background-color: #ffffff;
    color: #111111 !important;
    line-height: 1;
}

.btn-nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.88);
    color: #111111 !important;
    transform: translateY(-1px);
}

#site-navbar.scrolled .btn-nav-cta       { background-color: #0073aa; color: #ffffff !important; }
#site-navbar.scrolled .btn-nav-cta:hover { background-color: #005d8e; color: #ffffff !important; }

.hamburger-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hamburger-btn:hover,
.hamburger-btn:focus           { background-color: rgba(255,255,255,0.12); outline: none; }
#site-navbar.scrolled .hamburger-btn             { color: #111111; }
#site-navbar.scrolled .hamburger-btn:hover       { background-color: rgba(0,0,0,0.07); }

.mobile-nav-panel {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 1039;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-panel.open  { transform: translateX(0); }
body.mobile-menu-open   { overflow: hidden; }
.mobile-nav-content     { padding-bottom: 32px; }

.mobile-nav-item { border-bottom: 1px solid #f0f0f0; }

.mobile-nav-link {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover { color: #555555; text-decoration: none; }

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #111111;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-toggle:hover { color: #555555; }

.mobile-acc-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.mobile-acc-arrow.rotated { transform: rotate(180deg); }

.mobile-sub-nav          { display: none; padding: 4px 16px 12px 24px; }
.mobile-sub-nav.open     { display: block; }

.mobile-sub-link {
    display: block;
    padding: 10px 12px;
    font-size: 0.875rem;
    color: #555555;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-sub-link:hover {
    background-color: #f5f5f5;
    color: #111111;
    text-decoration: none;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 24px;
    padding: 14px 28px;
    background-color: #0073aa;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.mobile-cta-btn:hover { background-color: #005d8e; color: #ffffff; }


/* =============================================
   GLAZIA HERO SECTION WIDGET
   ============================================= */

.glazia-hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #111111;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.glazia-hero-bg { position: absolute; inset: 0; }

.glazia-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glazia-hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.glazia-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.52) 100%
    );
}

.glazia-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 128px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) { .glazia-hero-content { padding-top: 160px; } }

.glazia-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.90);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255,255,255,0.22);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .glazia-hero-badge { font-size: 0.875rem; margin-bottom: 32px; }
}

.glazia-hero-heading {
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    max-width: 896px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.glazia-hero-italic {
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.glazia-hero-desc {
    margin-top: 20px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.70);
    max-width: 480px;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) { .glazia-hero-desc { font-size: 1rem; margin-top: 24px; } }

.glazia-hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 576px) {
    .glazia-hero-btns { flex-direction: row; justify-content: center; margin-top: 40px; }
}

.glazia-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

@media (min-width: 768px) { .glazia-btn { font-size: 1rem; } }

.glazia-btn-primary            { background-color: #ffffff; color: #111111 !important; }
.glazia-btn-primary:hover      { background-color: rgba(255,255,255,0.88); color: #111111 !important; transform: translateY(-2px); }

.glazia-btn-ghost {
    background-color: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.22);
    font-weight: 500;
}

.glazia-btn-ghost:hover        { background-color: rgba(255,255,255,0.20); color: #ffffff !important; transform: translateY(-2px); }

/* Service Cards */
.glazia-hero-cards {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: auto auto 40px;
    padding: 0 24px;
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 768px)  { .glazia-hero-cards { display: flex; gap: 20px; margin-bottom: 48px; } }
@media (min-width: 1024px) { .glazia-hero-cards { gap: 24px; } }

.glazia-hero-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #cccccc;
    width: 192px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

@media (min-width: 1024px) { .glazia-hero-card { width: 224px; } }

.glazia-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.28);
    text-decoration: none !important;
}

.glazia-hero-card-img,
.glazia-hero-card-noimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glazia-hero-card-noimg {
    background: linear-gradient(160deg, #2d2d2d 0%, #4a4a4a 100%);
}

.glazia-hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, transparent 55%);
}

.glazia-hero-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
}

.glazia-hero-card-label span {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.3;
    display: block;
}

@media (min-width: 1024px) { .glazia-hero-card-label span { font-size: 0.875rem; } }


/* =============================================
   GLAZIA ABOUT SECTION WIDGET  (.ga-*)
   ============================================= */

/* ── Outer section ── */
.ga-section {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

@media (min-width: 768px) { .ga-section { padding: 112px 40px; } }

/* ── Two-column inner ── */
.ga-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

@media (min-width: 992px) {
    .ga-inner {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
}

/* ── Left column ── */
.ga-left {
    flex: 1;
    max-width: 520px;
    width: 100%;
}

/* ── Badge ── */
.ga-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* ── Description ── */
.ga-desc {
    color: #374151;
    line-height: 1.75;
}

.ga-desc p {
    font-size: 1.0625rem;
    margin: 0;
}

@media (min-width: 768px) {
    .ga-desc p { font-size: 1.1875rem; }
}

/* ── CTA Button ── */
.ga-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 12px 24px;
    border-radius: 50px;
    background-color: #fbbf24;
    color: #111111 !important;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.15s ease;
    line-height: 1;
}

.ga-cta-btn:hover {
    background-color: #f59e0b;
    color: #111111 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* ── Stats ── */
.ga-stats {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    margin-top: 56px;
    flex-wrap: wrap;
}

@media (min-width: 768px) { .ga-stats { gap: 80px; } }

.ga-stat-item { display: flex; flex-direction: column; }

.ga-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) { .ga-stat-value { font-size: 3rem; } }

.ga-stat-label {
    margin-top: 6px;
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ── Serving Areas ── */
.ga-areas { margin-top: 48px; }

.ga-areas-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 12px;
}

.ga-areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ga-area-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 0.75rem;
    border: 1px solid #e5e7eb;
    line-height: 1;
    white-space: nowrap;
}

/* ── Right column ── */
.ga-right {
    flex: 1;
    width: 100%;
    max-width: 480px;
}

/* ── Image wrapper ── */
.ga-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #e5e7eb;
}

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

/* Placeholder when no image set */
.ga-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d1d5db 0%, #9ca3af 100%);
}

/* ── Top floating chip ── */
.ga-top-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #111111;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1;
}

/* ── Bottom gradient overlay ── */
.ga-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    padding: 24px;
}

.ga-overlay-title {
    color: #ffffff;
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.ga-overlay-sub {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.8125rem;
    margin-top: 4px;
    margin-bottom: 0;
}


/* =============================================
   GLAZIA LED MIRROR INTERACTIVE WIDGET  (.glem-*)
   ============================================= */

/* ── Section ── */
.glem-section {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

@media (min-width: 768px) { .glem-section { padding: 112px 40px; } }

/* ── Header (centered) ── */
.glem-header {
    max-width: 1280px;
    margin: 0 auto 64px;
    text-align: center;
}

.glem-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.glem-heading {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    margin: 0 0 16px;
}

.glem-heading-accent { color: #d97706; }

.glem-section-desc {
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ── Two-column grid ── */
.glem-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .glem-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ══════════════════════════════════════════════
   MIRROR — LEFT COLUMN
   ══════════════════════════════════════════════ */

.glem-mirror-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.glem-perspective {
    perspective: 1000px;
}

.glem-tilt {
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(0deg);
}

/* Mirror frame */
.glem-mirror-frame {
    position: relative;
    width: 300px;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 45px rgba(0,0,0,0.12);
}

@media (min-width: 480px) {
    .glem-mirror-frame { width: 360px; height: 540px; }
}

@media (min-width: 768px) {
    .glem-mirror-frame { width: 430px; height: 620px; border-radius: 48px; }
}

/* Mirror base image */
.glem-mirror-img,
.glem-mirror-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.glem-mirror-img { object-fit: cover; object-position: top; }

.glem-mirror-placeholder {
    background: linear-gradient(160deg, #1e2a3a 0%, #2d3f52 50%, #1a2535 100%);
}

/* Base gradient tint (always on top of image) */
.glem-mirror-base-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Dynamic light overlay — color set via JS */
.glem-mirror-light-grad {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.6s ease, opacity 0.6s ease;
    background: radial-gradient(62% 48% at 50% 38%, rgba(200,220,255,0.55) 0%, transparent 70%);
    opacity: 0.85;
}

/* Circular glow ring centred on the mirror — color set via JS */
.glem-mirror-glow-ring {
    position: absolute;
    inset: 13% 20% 28%;
    border-radius: 50%;
    pointer-events: none;
    transition: box-shadow 0.6s ease;
    box-shadow:
        rgba(180, 210, 255, 0.8) 0px 0px 60px 8px,
        rgba(180, 210, 255, 0.8) 0px 0px 40px 6px inset;
    opacity: 0.7;
}

/* ── Zone buttons on mirror ── */
.glem-zone-btn {
    position: absolute;
    width: 36px;
    height: 36px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.glem-zone-btn:hover .glem-zone-label { opacity: 1; }

/* Pulsing ring */
.glem-zone-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.40;
    animation: glemia-ping 2.5s cubic-bezier(0,0,0.2,1) infinite;
}

@keyframes glemia-ping {
    0%   { transform: scale(0.5); opacity: 0.9; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Inner dot */
.glem-zone-dot {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: box-shadow 0.4s ease, transform 0.4s ease, background-color 0.4s ease;
    z-index: 1;
}

/* Tooltip label */
.glem-zone-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    background: rgba(0,0,0,0.50);
    padding: 2px 8px;
    border-radius: 50px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* "Interactive" top-right badge on mirror */
.glem-interactive-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0.65;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Bottom hint bar */
.glem-mirror-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: rgba(0,0,0,0.40);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.70;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ══════════════════════════════════════════════
   PRODUCT INFO — RIGHT COLUMN
   ══════════════════════════════════════════════ */

.glem-product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 12px;
    line-height: 1.2;
}

@media (min-width: 768px) { .glem-product-name { font-size: 1.875rem; } }

.glem-product-desc {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 32px;
}

@media (min-width: 768px) { .glem-product-desc { font-size: 1rem; } }

/* ── Mode selector ── */
.glem-mode-wrap { margin-bottom: 24px; }

.glem-mode-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 14px;
}

.glem-mode-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.glem-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    font-size: 0;   /* hide text for spec, set below */
}

.glem-mode-btn.active {
    border-color: #2563eb;
    background-color: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.glem-mode-btn:hover:not(.active) { border-color: #d1d5db; }

.glem-mode-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}

.glem-mode-btn.active .glem-mode-dot { box-shadow: 0 0 8px 2px rgba(180,210,255,0.8); }

.glem-mode-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s;
}

.glem-mode-btn.active .glem-mode-name { color: #1d4ed8; }

/* ── Current indicator ── */
.glem-indicator {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background-color: #f3f4f6;
    border: 1px solid rgba(229,231,235,0.7);
    margin-bottom: 28px;
    transition: background-color 0.3s ease;
}

.glem-indicator-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.6s ease, box-shadow 0.6s ease;
    background: radial-gradient(circle, rgba(200,220,255,0.9) 0%, rgba(200,220,255,0.55) 100%);
    box-shadow: rgba(180,210,255,0.8) 0px 0px 20px;
}

.glem-indicator-text { flex: 1; }

.glem-indicator-mode {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.glem-indicator-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 2px 0 0;
    transition: opacity 0.3s ease;
}

/* ── Features grid ── */
.glem-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
}

.glem-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background-color: #f3f4f6;
    border: 1px solid rgba(229,231,235,0.7);
}

.glem-feat-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glem-feat-icon-wrap i {
    font-size: 0.875rem;
    color: #b45309;
}

.glem-feat-text { flex: 1; }

.glem-feat-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.glem-feat-sub {
    font-size: 0.7rem;
    color: #6b7280;
    margin: 2px 0 0;
}

/* ── CTA row ── */
.glem-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 576px) {
    .glem-cta-row { flex-direction: row; align-items: center; }
}

.glem-cta-primary,
.glem-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    line-height: 1;
}

.glem-cta-primary {
    background-color: #2563eb;
    color: #ffffff !important;
}

.glem-cta-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.glem-cta-secondary {
    background-color: #fef3c7;
    color: #92400e !important;
}

.glem-cta-secondary:hover {
    background-color: #fde68a;
    color: #78350f !important;
    transform: translateY(-1px);
}


/* =============================================
   GLAZIA SERVICES GRID WIDGET  (.gsvc-*)
   ============================================= */

/* ── Section ── */
.gsvc-section {
    background-color: #f0f1f2;
    padding: 80px 24px;
}

@media (min-width: 768px) { .gsvc-section { padding: 112px 40px; } }

/* ── Inner container ── */
.gsvc-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Split header: left text + right description ── */
.gsvc-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 56px;
}

@media (min-width: 768px) {
    .gsvc-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 56px;
    }
}

.gsvc-header-left { flex-shrink: 0; }

/* Badge */
.gsvc-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Heading */
.gsvc-heading {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin: 0;
}

/* Right description */
.gsvc-header-desc {
    font-size: 0.9rem;
    color: #6b7280;
    max-width: 420px;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) { .gsvc-header-desc { font-size: 1rem; text-align: right; } }

/* ── Card grid ── */
.gsvc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Tablet breakpoints */
@media (min-width: 576px) {
    .gsvc-grid--sm1 { grid-template-columns: 1fr; }
    .gsvc-grid--sm2 { grid-template-columns: repeat(2, 1fr); }
    .gsvc-grid--sm3 { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop breakpoints */
@media (min-width: 992px) {
    .gsvc-grid--lg2 { grid-template-columns: repeat(2, 1fr); }
    .gsvc-grid--lg3 { grid-template-columns: repeat(3, 1fr); }
    .gsvc-grid--lg4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

@media (min-width: 768px) { .gsvc-grid { gap: 24px; } }

/* ── Individual card ── */
.gsvc-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #d1d5db;
    text-decoration: none !important;
    cursor: pointer;
}

/* Hover: lift + image zoom */
.gsvc-card:hover { text-decoration: none !important; }

/* Image */
.gsvc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gsvc-card:hover .gsvc-card-img { transform: scale(1.06); }

/* Empty placeholder */
.gsvc-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #c4c9d0 0%, #9ca3af 100%);
}

/* Gradient overlay */
.gsvc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.10) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Top-right badge pill */
.gsvc-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.20);
    line-height: 1.5;
}

/* Bottom text block */
.gsvc-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}

@media (min-width: 768px) { .gsvc-card-bottom { padding: 24px; } }

.gsvc-card-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

@media (min-width: 768px) { .gsvc-card-title { font-size: 1.125rem; } }

.gsvc-card-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
    margin: 4px 0 0;
    line-height: 1.4;
}

/* ── View all link ── */
.gsvc-viewall-wrap {
    margin-top: 40px;
    text-align: center;
}

.gsvc-viewall-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none !important;
    transition: color 0.2s ease, gap 0.2s ease;
}

.gsvc-viewall-link:hover {
    color: #111111;
    gap: 10px;
    text-decoration: none !important;
}


/* =============================================
   GLAZIA PORTFOLIO WIDGET  (.gport-*)
   ============================================= */

.gport-section {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

@media (min-width: 768px) { .gport-section { padding: 112px 40px; } }

.gport-inner { max-width: 1280px; margin: 0 auto; }

/* ── Centered header ── */
.gport-header {
    text-align: center;
    margin-bottom: 56px;
}

.gport-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gport-heading {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    max-width: 640px;
    margin: 0 auto;
}

.gport-accent { color: #d97706; }

/* ── Bento grid ── */
.gport-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 992px) {
    .gport-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: stretch;
    }
}

@media (min-width: 768px) { .gport-grid { gap: 24px; } }

/* ── Shared card ── */
.gport-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background-color: #d1d5db;
    text-decoration: none !important;
    cursor: pointer;
}

.gport-card:hover { text-decoration: none !important; }

.gport-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gport-card:hover .gport-card-img { transform: scale(1.06); }

.gport-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, #c4c9d0 0%, #9ca3af 100%);
}

.gport-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 60%);
    pointer-events: none;
}

.gport-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}

@media (min-width: 768px) { .gport-card-bottom { padding: 24px; } }

.gport-card-cat {
    display: block;
    color: rgba(255,255,255,0.80);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gport-card-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 4px 0 0;
}

.gport-card-title--lg { font-size: 1.25rem; }

@media (min-width: 768px) {
    .gport-card-title     { font-size: 1.125rem; }
    .gport-card-title--lg { font-size: 1.5rem; }
}

/* ── Featured card (left — tall) ── */
.gport-card--featured { aspect-ratio: 4 / 5; }

@media (min-width: 992px) {
    .gport-card--featured {
        aspect-ratio: unset;
        height: 100%;
    }
}

/* ── Side stack (right column) ── */
.gport-side-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) { .gport-side-stack { gap: 24px; } }

.gport-card--side { aspect-ratio: 16 / 10; }

/* ── View all link ── */
.gport-viewall-wrap {
    margin-top: 40px;
    text-align: center;
}

.gport-viewall-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none !important;
    transition: color 0.2s ease, gap 0.2s ease;
}

.gport-viewall-link:hover {
    color: #111111;
    gap: 10px;
    text-decoration: none !important;
}


/* =============================================
   GLAZIA TESTIMONIALS WIDGET  (.gtst-*)
   ============================================= */

/* ── Section ── */
.gtst-section {
    background-color: #f3f4f6;
    padding: 80px 24px;
}

@media (min-width: 768px) { .gtst-section { padding: 112px 40px; } }

/* ── Inner ── */
.gtst-inner { max-width: 1280px; margin: 0 auto; }

/* ── Left-aligned header ── */
.gtst-header { margin-bottom: 56px; }

.gtst-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gtst-heading {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    max-width: 520px;
    margin: 0;
}

/* ── Responsive grid ── */
.gtst-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .gtst-grid--md1 { grid-template-columns: 1fr; }
    .gtst-grid--md2 { grid-template-columns: repeat(2, 1fr); }
    .gtst-grid { gap: 24px; }
}

@media (min-width: 992px) {
    .gtst-grid--lg2 { grid-template-columns: repeat(2, 1fr); }
    .gtst-grid--lg3 { grid-template-columns: repeat(3, 1fr); }
    .gtst-grid--lg4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Individual card ── */
.gtst-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(229, 231, 235, 0.70);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gtst-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

@media (min-width: 768px) { .gtst-card { padding: 24px; } }

/* ── Reviewer row: avatar + name/role ── */
.gtst-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* Avatar circle */
.gtst-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e5e7eb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Placeholder icon when no avatar */
.gtst-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e7eb;
}

.gtst-avatar-placeholder i {
    font-size: 1.25rem;
    color: #9ca3af;
}

/* Name & role */
.gtst-reviewer-info { flex: 1; min-width: 0; }

.gtst-reviewer-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111111;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gtst-reviewer-role {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 2px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gtst-role-at {
    opacity: 0.65;
    margin-right: 1px;
}

/* ── Quote text ── */
.gtst-quote {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* ── Star rating ── */
.gtst-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 16px;
}

.gtst-star-filled {
    font-size: 0.875rem;
    color: #f59e0b;
    line-height: 1;
}

.gtst-star-empty {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1;
}


/* =============================================
   GLAZIA STATS & PARTNERS WIDGET  (.gstb-*)
   ============================================= */

/* ── Section ── */
.gstb-section {
    background-color: #f8f9fa;
    padding: 64px 24px;
}

@media (min-width: 768px) { .gstb-section { padding: 80px 40px; } }

/* ── Inner ── */
.gstb-inner { max-width: 1280px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   STATS COUNTER GRID
   ══════════════════════════════════════════════ */

.gstb-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .gstb-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 48px;
    }
}

.gstb-stat-item { text-align: center; }

.gstb-stat-value {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.gstb-stat-label {
    margin-top: 6px;
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ══════════════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════════════ */

.gstb-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 48px;
}

/* ══════════════════════════════════════════════
   PARTNERS / CERTIFICATIONS
   ══════════════════════════════════════════════ */

.gstb-partners-header {
    text-align: center;
    margin-bottom: 32px;
}

.gstb-partners-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Partner card grid: 2 → 3 → 6 */
.gstb-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 576px) {
    .gstb-partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .gstb-partners-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

/* Individual partner card */
.gstb-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.70);
    text-decoration: none !important;
    cursor: default;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Only add pointer + hover lift when it's a link */
a.gstb-partner-card {
    cursor: pointer;
}

a.gstb-partner-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-decoration: none !important;
}

/* Icon wrapper */
.gstb-partner-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gstb-partner-icon i {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1;
}

/* Logo image (replaces icon) */
.gstb-partner-logo {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Partner name label */
.gstb-partner-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    line-height: 1.35;
}


/* =============================================
   GLAZIA CTA WIDGET  (.gcta-*)
   ============================================= */

/* ── Section ── */
.gcta-section {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

@media (min-width: 768px) { .gcta-section { padding: 112px 40px; } }

/* ── Inner ── */
.gcta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Image Wrapper (Cinematic 21:9) ── */
.gcta-image-wrap {
    width: 100%;
    max-width: 896px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background-color: #e5e7eb;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .gcta-image-wrap {
        aspect-ratio: 21 / 9;
        margin-bottom: 64px;
    }
}

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

.gcta-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #c4c9d0 0%, #9ca3af 100%);
}

/* ── Mixed Heading ── */
.gcta-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    max-width: 672px;
    margin: 0 0 40px;
}

/* Italic Serif parts */
.gcta-italic {
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-style: italic;
    font-weight: 400;
    color: #6b7280;
}

/* ── Button ── */
.gcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 50px;
    background-color: #2563eb;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.gcta-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none !important;
}


/* =============================================
   GLAZIA CONTACT WIDGET  (.gcnt-*)
   ============================================= */

/* ── Section ── */
.gcnt-section {
    background-color: #f0f1f2;
    padding: 80px 24px;
}

@media (min-width: 768px) { .gcnt-section { padding: 112px 40px; } }

/* ── Inner ── */
.gcnt-inner { max-width: 1280px; margin: 0 auto; }

/* ── Grid ── */
.gcnt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 992px) {
    .gcnt-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* ══════════════════════════════════════════════
   LEFT COLUMN
   ══════════════════════════════════════════════ */

.gcnt-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gcnt-heading {
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin: 0 0 24px;
}

.gcnt-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 448px;
    margin: 0 0 40px;
}

.gcnt-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.gcnt-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gcnt-icon-wrap i {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1;
}

.gcnt-info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.gcnt-info-value {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 2px 0 0;
}

/* ══════════════════════════════════════════════
   RIGHT COLUMN (Form Box)
   ══════════════════════════════════════════════ */

.gcnt-form-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(229, 231, 235, 0.70);
}

@media (min-width: 768px) { .gcnt-form-box { padding: 32px; } }

/* Fixes for popular form plugins (CF7, WPForms) inside the box */
.gcnt-form-box form { margin: 0; }

.gcnt-form-box input[type="text"],
.gcnt-form-box input[type="email"],
.gcnt-form-box input[type="tel"],
.gcnt-form-box input[type="url"],
.gcnt-form-box select,
.gcnt-form-box textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.gcnt-form-box input:focus,
.gcnt-form-box select:focus,
.gcnt-form-box textarea:focus {
    border-color: #93c5fd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2);
}

.gcnt-form-box label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.gcnt-form-box input[type="submit"],
.gcnt-form-box button[type="submit"],
.gcnt-submit-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 50px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.gcnt-form-box input[type="submit"]:hover,
.gcnt-form-box button[type="submit"]:hover,
.gcnt-submit-btn:hover {
    background-color: #1d4ed8;
}

/* Fallback form specific layout */
.gcnt-fallback-form .gcnt-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 576px) {
    .gcnt-fallback-form .gcnt-form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    }
}

/* =============================================
   SITE FOOTER (.site-footer)
   ============================================= */

.site-footer {
    background-color: #000000;
    color: #ffffff;
}

.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .site-footer-inner {
        padding: 80px 40px;
    }
}

/* ── Grid Layout ── */
.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .site-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* ── Column 1: Brand / CTA ── */
.footer-heading {
    font-family: var(--bs-body-font-family); /* Or generic sans-serif, using same as heading in Original HTML */
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #ffffff;
}

.footer-desc {
    font-size: 0.875rem;
    color: #9ca3af; /* foreground-400 */
    line-height: 1.75;
    max-width: 320px;
    margin: 0 0 32px;
}

/* Newsletter Input Area */
.footer-cta-wrap {
    margin-top: 32px;
}

.footer-input-wrap {
    position: relative;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-email-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #4b5563; /* foreground-600 */
    padding: 0 0 12px 0;
    color: #ffffff;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-email-input:focus {
    border-bottom-color: #ffffff;
}

.footer-email-input::placeholder {
    color: #6b7280; /* foreground-500 */
}

/* CTA Button */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #030712 !important; /* foreground-950 */
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.footer-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ── Columns 2 & 3: Typography & Lists ── */
.footer-widget-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #d1d5db; /* foreground-300 */
    margin: 0 0 24px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: underline !important;
    text-decoration-color: #4b5563 !important;
    text-underline-offset: 4px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff !important;
}

.footer-contact-details p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0 0 12px;
}

.footer-visit-wrap {
    margin-top: 32px;
}

.footer-address {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.75;
    margin: 0;
}

/* ── Bottom Bar ── */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid #1f2937; /* foreground-800 */
}

@media (min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-inline-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-inline-menu a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: underline !important;
    text-decoration-color: #4b5563 !important;
    text-underline-offset: 4px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-inline-menu a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff !important;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}
/ *   E l e m e n t o r   F u l l   W i d t h   O v e r r i d e s   * / 
 b o d y . e l e m e n t o r - p a g e   . s i t e - m a i n   {   p a d d i n g :   0   ! i m p o r t a n t ;   } 
 b o d y . e l e m e n t o r - p a g e   . s i t e - m a i n   >   . c o n t a i n e r   {   m a x - w i d t h :   1 0 0 %   ! i m p o r t a n t ;   p a d d i n g :   0   ! i m p o r t a n t ;   }  
 