/*
Theme Name: GGL - Global Grand Logistics
Theme URI: https://globallogistics.uz
Author: GGL Team
Author URI: https://globallogistics.uz
Description: Профессиональная тема для транспортно-логистической компании Global Grand Logistics. Грузоперевозки фурами, международная и региональная логистика.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ggl-logistics
Tags: one-page, custom-logo, logistics, trucking, russian
*/

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a202c;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #0A4DA2; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #083d82; }

/* ========== CONTAINER ========== */
.ggl-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .ggl-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .ggl-container { padding: 0 2rem; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ========== NAVBAR ========== */
.ggl-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.ggl-navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.ggl-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (min-width: 1024px) {
  .ggl-navbar-inner { height: 80px; }
}

.ggl-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ggl-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.3s;
}

.ggl-navbar.scrolled .ggl-logo-text { color: #0A4DA2; }

.ggl-logo-sub {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .ggl-logo-sub { display: block; }
}

.ggl-navbar.scrolled .ggl-logo-sub { color: #0B1D3A; }

.ggl-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .ggl-nav-links { display: flex; }
}

.ggl-nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  transition: color 0.3s;
}

.ggl-nav-links a:hover { color: #F5A623; }

.ggl-navbar.scrolled .ggl-nav-links a { color: #0B1D3A; }
.ggl-navbar.scrolled .ggl-nav-links a:hover { color: #F5A623; }

.ggl-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5A623;
  color: #0B1D3A;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.ggl-nav-cta:hover {
  background: #e6951a;
  transform: scale(1.05);
}

.ggl-nav-cta svg { width: 16px; height: 16px; }

/* Mobile Menu Toggle */
.ggl-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .ggl-mobile-toggle { display: none; }
}

.ggl-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}

.ggl-navbar.scrolled .ggl-mobile-toggle span { background: #0B1D3A; }

.ggl-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ggl-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.ggl-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.ggl-mobile-menu {
  display: none;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 1rem;
}

.ggl-mobile-menu.active { display: block; }

@media (min-width: 1024px) {
  .ggl-mobile-menu { display: none !important; }
}

.ggl-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0B1D3A;
  border-bottom: 1px solid #f0f0f0;
}

.ggl-mobile-menu a:last-child { border-bottom: none; }
.ggl-mobile-menu a:hover { color: #0A4DA2; }

.ggl-mobile-menu .ggl-nav-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 14px;
}

/* ========== HERO SECTION ========== */
.ggl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.ggl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,29,58,0.92), rgba(10,77,162,0.72), rgba(10,77,162,0.42));
}

.ggl-hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ggl-hero-lines span {
  position: absolute;
  left: 0;
  height: 1px;
}

.ggl-hero-lines span:nth-child(1) {
  top: 25%;
  width: 33%;
  background: linear-gradient(to right, rgba(245,166,35,0.6), transparent);
  height: 2px;
}

.ggl-hero-lines span:nth-child(2) {
  top: 33%;
  width: 25%;
  background: linear-gradient(to right, rgba(255,255,255,0.3), transparent);
}

.ggl-hero-lines span:nth-child(3) {
  top: 66%;
  width: 40%;
  background: linear-gradient(to right, rgba(245,166,35,0.4), transparent);
}

.ggl-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 720px;
}

.ggl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 2rem;
}

.ggl-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F5A623;
  animation: pulse 2s infinite;
}

.ggl-hero-badge span {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.ggl-hero h1 {
  font-weight: 900;
  font-size: 2.25rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.ggl-hero h1 .accent { color: #F5A623; }

@media (min-width: 640px) {
  .ggl-hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .ggl-hero h1 { font-size: 4.25rem; }
}

.ggl-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .ggl-hero-desc { font-size: 1.2rem; }
}

.ggl-hero-slogan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .ggl-hero-slogan { font-size: 1.75rem; }
}

.ggl-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ggl-hero-buttons { flex-direction: row; }
}

.ggl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F5A623;
  color: #0B1D3A;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(245,166,35,0.3);
}

.ggl-btn-primary:hover {
  background: #e6951a;
  transform: scale(1.05);
}

.ggl-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.ggl-btn-outline:hover { background: rgba(255,255,255,0.1); }

.ggl-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.ggl-hero-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #F5A623;
}

.ggl-hero-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 4px;
}

/* ========== ABOUT SECTION ========== */
.ggl-about {
  padding: 5rem 0;
  background: #f8fafc;
}

@media (min-width: 1024px) {
  .ggl-about { padding: 7rem 0; }
}

.ggl-about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ggl-about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.ggl-about-image {
  position: relative;
}

.ggl-about-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.ggl-about-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .ggl-about-image-wrap img { height: 500px; }
}

.ggl-about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.6), transparent);
}

.ggl-about-image-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.ggl-about-image-label p {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.ggl-about-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #F5A623;
  color: #0B1D3A;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 5;
}

.ggl-section-tag {
  display: inline-block;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ggl-section-tag.blue {
  background: rgba(10,77,162,0.1);
  color: #0A4DA2;
}

.ggl-section-tag.red {
  background: #fef2f2;
  color: #dc2626;
}

.ggl-section-tag.amber {
  background: rgba(245,166,35,0.15);
  color: #92400e;
}

.ggl-section-tag.white {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.ggl-section-tag.green {
  background: rgba(16,185,129,0.1);
  color: #065f46;
}

.ggl-section-title {
  font-weight: 800;
  font-size: 1.875rem;
  color: #0B1D3A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .ggl-section-title { font-size: 2.25rem; }
}

.ggl-section-title.white { color: #fff; }

.ggl-about-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ggl-about-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: #0A4DA2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ggl-about-item h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0B1D3A;
  margin-bottom: 4px;
}

.ggl-about-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* ========== PROBLEMS SECTION ========== */
.ggl-problems {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .ggl-problems { padding: 7rem 0; }
}

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

.ggl-section-desc {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.ggl-section-desc.white {
  color: rgba(255,255,255,0.7);
}

.ggl-problems-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ggl-problems-grid { grid-template-columns: repeat(3, 1fr); }
}

.ggl-problem-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.ggl-problem-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}

.ggl-problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.ggl-problem-card:hover .ggl-problem-icon { transform: scale(1.1); }

.ggl-problem-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0B1D3A;
  margin-bottom: 0.75rem;
}

.ggl-problem-card p {
  color: #4a5568;
  line-height: 1.6;
}

.ggl-problem-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.ggl-problem-card:hover .ggl-problem-card-line { opacity: 1; }

/* ========== SOLUTIONS SECTION ========== */
.ggl-solutions {
  position: relative;
  padding: 5rem 0;
  background: #0A4DA2;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ggl-solutions { padding: 7rem 0; }
}

.ggl-solutions-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.ggl-solutions-bg .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.ggl-solutions-bg .circle:nth-child(1) {
  top: 0; right: 0;
  width: 384px; height: 384px;
  background: rgba(255,255,255,0.2);
}

.ggl-solutions-bg .circle:nth-child(2) {
  bottom: 0; left: 0;
  width: 320px; height: 320px;
  background: rgba(245,166,35,0.3);
}

.ggl-solutions-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ggl-solutions-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
}

.ggl-solutions-lines span:nth-child(1) {
  top: 25%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.05), transparent);
}

.ggl-solutions-lines span:nth-child(2) {
  top: 50%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}

.ggl-solutions-lines span:nth-child(3) {
  top: 75%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
}

.ggl-solutions-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .ggl-solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.ggl-solution-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ggl-solution-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B1D3A;
  transition: transform 0.3s;
}

.ggl-solution-item:hover .ggl-solution-item-icon { transform: scale(1.1); }

.ggl-solution-item h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.ggl-solution-item p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.ggl-solutions-image {
  position: relative;
}

.ggl-solutions-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.ggl-solutions-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .ggl-solutions-image-wrap img { height: 550px; }
}

.ggl-solutions-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.5), transparent);
}

.ggl-solutions-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 260px;
  z-index: 5;
}

@media (max-width: 767px) {
  .ggl-solutions-float-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    max-width: 100%;
  }
}

.ggl-solutions-float-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ggl-solutions-float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.ggl-solutions-float-card-header span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0B1D3A;
}

.ggl-solutions-float-card p {
  font-size: 0.875rem;
  color: #4a5568;
}

/* ========== SERVICES SECTION ========== */
.ggl-services {
  padding: 5rem 0;
  background: #f8fafc;
}

@media (min-width: 1024px) {
  .ggl-services { padding: 7rem 0; }
}

.ggl-services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ggl-services-grid { grid-template-columns: repeat(2, 1fr); }
}

.ggl-service-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.ggl-service-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.ggl-service-card-inner {
  display: flex;
  gap: 1.25rem;
}

.ggl-service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #0A4DA2, #0B1D3A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
}

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

.ggl-service-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0B1D3A;
  margin-bottom: 0.5rem;
}

.ggl-service-card p {
  color: #4a5568;
  line-height: 1.6;
}

.ggl-service-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(to bottom left, rgba(10,77,162,0.05), transparent);
  border-radius: 0 1rem 0 100%;
}

/* CTA Banner */
.ggl-cta-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 4rem;
}

.ggl-cta-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ggl-cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,29,58,0.85), rgba(10,77,162,0.6));
}

.ggl-cta-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.ggl-cta-banner-content h3 {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .ggl-cta-banner-content h3 { font-size: 1.875rem; }
}

.ggl-cta-banner-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

/* ========== ADVANTAGES SECTION ========== */
.ggl-advantages {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .ggl-advantages { padding: 7rem 0; }
}

.ggl-advantages-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ggl-advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .ggl-advantages-grid { grid-template-columns: repeat(3, 1fr); }
}

.ggl-advantage-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}

.ggl-advantage-card:hover {
  border-color: rgba(10,77,162,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.ggl-advantage-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(10,77,162,0.08);
  transition: color 0.3s;
}

.ggl-advantage-card:hover .ggl-advantage-num { color: rgba(10,77,162,0.15); }

.ggl-advantage-bar {
  width: 4px;
  height: 32px;
  background: #F5A623;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ggl-advantage-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0B1D3A;
  margin-bottom: 0.5rem;
  padding-right: 3rem;
}

.ggl-advantage-card p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ========== STATS SECTION ========== */
.ggl-stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ggl-stats { padding: 7rem 0; }
}

.ggl-stats-bg {
  position: absolute;
  inset: 0;
}

.ggl-stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ggl-stats-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,29,58,0.85);
}

.ggl-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .ggl-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.ggl-stat-card {
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem 1rem;
  transition: background 0.4s;
}

.ggl-stat-card:hover { background: rgba(255,255,255,0.1); }

.ggl-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

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

.ggl-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* ========== CLIENTS SECTION ========== */
.ggl-clients {
  padding: 5rem 0;
  background: #f8fafc;
}

@media (min-width: 1024px) {
  .ggl-clients { padding: 7rem 0; }
}

.ggl-clients-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .ggl-clients-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .ggl-clients-logos { grid-template-columns: repeat(5, 1fr); }
}

.ggl-client-logo {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.ggl-client-logo:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: rgba(10,77,162,0.2);
}

.ggl-client-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(11,29,58,0.6);
  text-align: center;
}

.ggl-clients-info {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ggl-clients-info { grid-template-columns: repeat(3, 1fr); }
}

.ggl-clients-info-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}

.ggl-clients-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(10,77,162,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A4DA2;
  margin-bottom: 1rem;
}

.ggl-clients-info-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0B1D3A;
  margin-bottom: 0.5rem;
}

.ggl-clients-info-card p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== CONTACT SECTION ========== */
.ggl-contact {
  padding: 5rem 0;
  background: #0B1D3A;
}

@media (min-width: 1024px) {
  .ggl-contact { padding: 7rem 0; }
}

.ggl-contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .ggl-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.ggl-contact-info h2 {
  font-weight: 800;
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .ggl-contact-info h2 { font-size: 2.25rem; }
}

.ggl-contact-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.ggl-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ggl-contact-item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: #0A4DA2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}

.ggl-contact-item:hover .ggl-contact-item-icon {
  background: #F5A623;
  color: #0B1D3A;
}

.ggl-contact-item-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.ggl-contact-item-value {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Contact Form */
.ggl-contact-form-wrap {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.ggl-contact-form-wrap h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.ggl-form-group {
  margin-bottom: 1rem;
}

.ggl-form-group label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.ggl-form-group input,
.ggl-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}

.ggl-form-group input::placeholder,
.ggl-form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.ggl-form-group input:focus,
.ggl-form-group textarea:focus {
  border-color: #F5A623;
}

.ggl-form-group textarea { resize: none; }

.ggl-form-submit {
  width: 100%;
  background: #F5A623;
  color: #0B1D3A;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.ggl-form-submit:hover {
  background: #e6951a;
  transform: scale(1.02);
}

/* ========== FOOTER ========== */
.ggl-footer {
  background: #081428;
  padding: 3rem 0;
}

.ggl-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

.ggl-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ggl-footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
}

.ggl-footer-logo-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

.ggl-footer-socials {
  display: flex;
  gap: 1.5rem;
}

.ggl-footer-socials a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.ggl-footer-socials a:hover { color: #F5A623; }

.ggl-footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
}

.ggl-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.ggl-footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}

/* ========== SCROLL TO TOP ========== */
.ggl-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A4DA2;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
  pointer-events: none;
}

.ggl-scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ggl-scroll-top:hover { background: #083d82; }

/* ========== SVG ICONS INLINE ========== */
.ggl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ggl-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ggl-icon-sm svg { width: 16px; height: 16px; }
.ggl-icon-md svg { width: 22px; height: 22px; }
.ggl-icon-lg svg { width: 28px; height: 28px; }
.ggl-icon-xl svg { width: 32px; height: 32px; }

/* ========== DESKTOP ONLY ========== */
.ggl-desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .ggl-desktop-only { display: inline-flex; }
}

/* ========== UTILITY ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
