/* =====================================================
   GLOBAL CONTEXT TRAVEL SERVICE - PROFESSIONAL REDESIGN
   Modern & Minimal Style | Teal/Blue Color Scheme

   HOW TO USE:
   1. Go to WordPress Admin > Appearance > Customize > Additional CSS
   2. Paste this entire file
   3. Click "Publish"
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES (Color Palette)
   ===================================================== */
:root {
  /* Primary Colors */
  --primary: #1a6c7a;
  --primary-dark: #145a66;
  --primary-light: #2a8a9a;

  /* Secondary Colors */
  --secondary: #153243;
  --secondary-light: #1e4560;

  /* Accent */
  --accent: #e8b54d;
  --accent-light: #f0c76e;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8fafb;
  --light-gray: #e9eef2;
  --medium-gray: #94a3b8;
  --dark-gray: #475569;
  --text-dark: #1e293b;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 40px -10px rgba(21,50,67,0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* =====================================================
   2. GLOBAL TYPOGRAPHY
   ===================================================== */

/* Import Google Fonts - Add this to your theme's header */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

h1, .elementor-widget-heading h1.elementor-heading-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2, .elementor-widget-heading h2.elementor-heading-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3, .elementor-widget-heading h3.elementor-heading-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

/* Subtle text for descriptions */
.gc-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  font-weight: 400;
  max-width: 600px;
}

/* =====================================================
   3. BUTTONS - Modern Minimal Style
   ===================================================== */

/* Primary Button */
.elementor-button,
.gc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 108, 122, 0.35);
}

.elementor-button:hover,
.gc-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 108, 122, 0.45);
  color: var(--white);
}

/* Secondary Button (Outline) */
.gc-btn-secondary,
.elementor-button.elementor-button--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.gc-btn-secondary:hover,
.elementor-button.elementor-button--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Large Button */
.gc-btn-large {
  padding: 20px 40px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* Button with Arrow */
.gc-btn-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.gc-btn-arrow:hover::after {
  transform: translateX(4px);
}

/* =====================================================
   4. NAVIGATION - Clean & Minimal
   ===================================================== */

/* Header */
.elementor-location-header,
header#masthead {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

/* Scrolled Header */
.elementor-location-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Navigation Links */
.elementor-nav-menu .elementor-item,
.main-navigation a {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  padding: 10px 20px;
  transition: var(--transition);
  position: relative;
}

.elementor-nav-menu .elementor-item:hover,
.main-navigation a:hover {
  color: var(--primary);
}

/* Active Nav Item */
.elementor-nav-menu .elementor-item.elementor-item-active,
.current-menu-item a {
  color: var(--primary);
}

/* Nav Item Underline Effect */
.elementor-nav-menu .elementor-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.elementor-nav-menu .elementor-item:hover::after,
.elementor-nav-menu .elementor-item.elementor-item-active::after {
  width: calc(100% - 40px);
}

/* =====================================================
   5. HERO SECTION
   ===================================================== */

.gc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Hero Background Pattern */
.gc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.03;
}

/* Hero Floating Elements */
.gc-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero Badge */
.gc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(26, 108, 122, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.gc-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* Hero Title */
.gc-hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.gc-hero-subtitle {
  font-size: 1.25rem;
  color: var(--dark-gray);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Hero Stats Row */
.gc-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
}

.gc-hero-stat {
  text-align: left;
}

.gc-hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.gc-hero-stat-label {
  font-size: 14px;
  color: var(--medium-gray);
  font-weight: 500;
}

/* =====================================================
   6. FEATURE CARDS - Services Section
   ===================================================== */

.gc-section {
  padding: var(--section-padding) 0;
}

.gc-section-light {
  background: var(--off-white);
}

/* Section Header */
.gc-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.gc-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.gc-section-title {
  margin-bottom: 20px;
}

.gc-section-desc {
  color: var(--dark-gray);
  font-size: 1.125rem;
}

/* Feature Cards Grid */
.gc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Feature Card */
.gc-feature-card,
.elementor-widget-icon-box .elementor-icon-box-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.gc-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* Card Hover Accent Line */
.gc-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.gc-feature-card:hover::before {
  transform: scaleX(1);
}

/* Feature Icon */
.gc-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 108, 122, 0.1) 0%, rgba(26, 108, 122, 0.05) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.gc-feature-card:hover .gc-feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.gc-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}

.gc-feature-desc {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.gc-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.gc-feature-link:hover {
  gap: 12px;
}

/* =====================================================
   7. STATS/TRUST SECTION
   ===================================================== */

.gc-stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.gc-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

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

.gc-stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.gc-stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

@media (max-width: 768px) {
  .gc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gc-stat-number {
    font-size: 2.5rem;
  }
}

/* =====================================================
   8. PROCESS SECTION - How It Works
   ===================================================== */

.gc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connecting Line */
.gc-process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--light-gray), var(--primary), var(--light-gray));
  z-index: 0;
}

.gc-process-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.gc-process-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition);
}

.gc-process-item:hover .gc-process-number {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.gc-process-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
}

.gc-process-desc {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .gc-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .gc-process-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .gc-process-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   9. TESTIMONIALS
   ===================================================== */

.gc-testimonials-section {
  background: var(--off-white);
}

.gc-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* Quote Mark */
.gc-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
}

.gc-testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.gc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gc-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.gc-testimonial-name {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.gc-testimonial-role {
  font-size: 14px;
  color: var(--medium-gray);
}

/* Star Rating */
.gc-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.gc-stars span {
  color: var(--accent);
  font-size: 18px;
}

/* =====================================================
   10. CTA SECTION
   ===================================================== */

.gc-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gc-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.gc-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.gc-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.gc-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.gc-cta-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

/* White Button for CTA */
.gc-btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.gc-btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* =====================================================
   11. CONTACT SECTION
   ===================================================== */

.gc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.gc-contact-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.gc-contact-info-title {
  color: var(--white);
  margin-bottom: 24px;
}

.gc-contact-info-desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.gc-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.gc-contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 20px;
  flex-shrink: 0;
}

.gc-contact-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.gc-contact-value {
  font-weight: 600;
  color: var(--white);
}

/* Contact Form */
.gc-contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.gc-form-group {
  margin-bottom: 24px;
}

.gc-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.gc-form-input,
.gc-form-textarea,
.elementor-field-textual {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-size: 15px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: var(--transition);
  color: var(--text-dark);
}

.gc-form-input:focus,
.gc-form-textarea:focus,
.elementor-field-textual:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 108, 122, 0.1);
}

.gc-form-textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 992px) {
  .gc-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   12. FOOTER
   ===================================================== */

.gc-footer {
  background: var(--secondary);
  color: var(--white);
  padding-top: 80px;
}

.gc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gc-footer-brand {
  max-width: 300px;
}

.gc-footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.gc-footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
}

.gc-footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.gc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gc-footer-links li {
  margin-bottom: 12px;
}

.gc-footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.gc-footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

/* Footer Bottom */
.gc-footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 992px) {
  .gc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .gc-footer-grid {
    grid-template-columns: 1fr;
  }

  .gc-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* =====================================================
   13. UTILITY CLASSES
   ===================================================== */

.gc-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gc-text-center { text-align: center; }
.gc-text-left { text-align: left; }
.gc-text-right { text-align: right; }

.gc-mt-0 { margin-top: 0; }
.gc-mb-0 { margin-bottom: 0; }
.gc-my-0 { margin-top: 0; margin-bottom: 0; }

.gc-pt-0 { padding-top: 0; }
.gc-pb-0 { padding-bottom: 0; }

/* Gradient Text */
.gc-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   14. ANIMATIONS
   ===================================================== */

/* Fade In Up */
.gc-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger Children */
.gc-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.gc-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.gc-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.gc-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.gc-stagger > *:nth-child(4) { animation-delay: 0.4s; }

/* =====================================================
   15. RESPONSIVE ADJUSTMENTS
   ===================================================== */

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .gc-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .gc-hero-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .gc-hero-stat {
    flex: 1 1 45%;
  }

  .gc-features-grid {
    grid-template-columns: 1fr;
  }

  .gc-section-header {
    margin-bottom: 40px;
  }
}

/* =====================================================
   16. ELEMENTOR OVERRIDES
   ===================================================== */

/* Remove default Elementor button styles */
.elementor-button-wrapper .elementor-button {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-weight: 600;
}

/* Icon Box Widget */
.elementor-widget-icon-box .elementor-icon {
  background: linear-gradient(135deg, rgba(26, 108, 122, 0.1) 0%, rgba(26, 108, 122, 0.05) 100%);
  padding: 20px;
  border-radius: var(--radius-md);
}

/* Remove default Elementor spacing issues */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--container-width);
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--primary);
  color: var(--white);
}
