/* ===================================================
   Google Profile / Material Design Style Overrides
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --google-blue: #1a73e8;
    --google-blue-hover: #1557b0;
    --google-green: #34a853;
    --google-green-hover: #2d8e47;
    --google-text-dark: #202124;
    --google-text-muted: #5f6368;
    --google-bg-gray: #f8f9fa;
    --google-border-color: #dadce0;
    --google-card-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    --google-hover-shadow: 0 4px 8px 0 rgba(60,64,67,0.2), 0 2px 4px 0 rgba(60,64,67,0.1);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--google-text-dark);
    background-color: #ffffff;
    padding-top: 64px;
}

/* Material Symbols Icon Helper */
.material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
    line-height: 1;
}

/* CSS Code */
.gbp-brand-link .brand-name-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #202124 !important;
}

.gbp-brand-link .brand-name-text .script-font {
    font-family: 'Great Vibes', cursive !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    color: #1a73e8 !important;
    margin-right: 4px;
}
/* Base Header Container */
  header.gbp-custom-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #dadce0 !important;
    font-family: 'Google Sans', Roboto, Arial, sans-serif !important;
    padding: 12px 0 !important;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
  }

  .gbp-custom-header .gbp-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }

  /* Logo / Brand */
  .gbp-brand-link {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #202124 !important;
    font-weight: 500 !important;
    font-size: 20px !important;
  }

  .gbp-brand-link .brand-icon {
    color: #1a73e8 !important; /* Google Blue */
    font-size: 26px !important;
    margin-right: 10px !important;
  }

  /* Mobile Toggler Button (Hidden on Desktop) */
  .gbp-toggler {
    display: none;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 6px;
    color: #5f6368;
    outline: none !important;
    border-radius: 4px;
  }

  .gbp-toggler:hover {
    background-color: #f1f3f4 !important;
  }

  .gbp-toggler .material-symbols-outlined {
    font-size: 28px !important;
    display: block;
  }

  /* Navigation Wrapper */
  .gbp-nav-wrapper {
    display: flex !important;
    align-items: center !important;
  }

  /* Navigation List */
  ul.gbp-nav-list {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  ul.gbp-nav-list li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 4px !important;
    padding: 0 !important;
  }

  ul.gbp-nav-list li::before {
    content: "" !important;
  }

  ul.gbp-nav-list li a.nav-item-link {
    display: block !important;
    color: #5f6368 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    transition: background-color 0.2s, color 0.2s !important;
  }

  ul.gbp-nav-list li a.nav-item-link:hover {
    color: #1a73e8 !important;
    background-color: #f8f9fa !important;
  }

  /* Book Now Button */
  .gbp-btn-wa {
    background-color: #34a853 !important; /* Google Green */
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 24px !important;
    padding: 8px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    margin-left: 12px !important;
    box-shadow: 0 1px 3px rgba(60,64,67,0.15) !important;
    transition: background-color 0.2s, box-shadow 0.2s !important;
  }

  .gbp-btn-wa:hover {
    background-color: #2d9247 !important;
    color: #ffffff !important;
  }

  .gbp-btn-wa .material-symbols-outlined {
    font-size: 18px !important;
  }

  /* Mobile Responsive View (screen size < 768px) */
  @media (max-width: 768px) {
    .gbp-toggler {
      display: block !important; /* Show toggler on mobile */
    }

    .gbp-nav-wrapper {
      display: none !important; /* Hide menu by default */
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-top: 1px solid #e8eaed;
      padding: 16px 20px;
      flex-direction: column !important;
      align-items: flex-start !important;
    }

    /* Active state when toggled */
    .gbp-nav-wrapper.is-open {
      display: flex !important;
    }

    ul.gbp-nav-list {
      flex-direction: column !important;
      width: 100% !important;
      align-items: flex-start !important;
    }

    ul.gbp-nav-list li {
      width: 100% !important;
      margin: 4px 0 !important;
    }

    ul.gbp-nav-list li a.nav-item-link {
      padding: 10px 12px !important;
      width: 100% !important;
    }

    .gbp-btn-wa {
      margin-left: 0 !important;
      margin-top: 12px !important;
      width: 100% !important;
      justify-content: center !important;
    }
  }

.taxi-hero-container {
    position: relative;
    width: 100%;
    min-height: 580px;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f1f8f5 50%, #e3f2fd 100%);
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #202124;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    color: #5f6368;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-call {
    background-color: #1a73e8;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-wa {
    background-color: #34a853;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
}

/* --- CAR & LIGHT RAYS VISUAL BOX --- */
.hero-visual-box {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. SUNBURST RAYS EFFECT (ROTATING BEAMS) */
.sunburst-rays {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 600px;
    height: 600px;
    margin-top: -300px;
    margin-left: -300px;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255, 215, 0, 0.35) 0deg 12deg,
        transparent 12deg 24deg
    );
    border-radius: 50%;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 70%);
    animation: rotateRays 25s linear infinite;
    z-index: 1;
}

/* Bright Light Center Glow */
.glow-center {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 223, 118, 0.8) 40%, transparent 75%);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 2;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

/* 2. MAIN CAR IMAGE STYLING */
.car-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

.main-car {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
}

/* 3. FLOATING BADGES (ONTIME, SAFE, RELIABLE) */
.badge-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid #e0e0e0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #3c4043;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    z-index: 6;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.badge-float .icon {
    font-size: 16px;
    color: #1a73e8;
}

/* Individual Positions */
.badge-ontime-1 { top: 10%; left: 45%; animation-delay: 0s; }
.badge-ontime-2 { top: 22%; right: 10%; animation-delay: 1s; }
.badge-safe-1   { top: 40%; right: 2%;  animation-delay: 1.5s; }
.badge-safe-2   { bottom: 12%; right: 15%; animation-delay: 0.5s; }
.badge-reliable { bottom: 10%; left: 30%; animation-delay: 2s; }

/* 4. FLOATING LOCATION PINS */
.pin-float {
    position: absolute;
    color: #1a73e8;
    background: #ffffff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    z-index: 6;
    animation: floatAnim 3.5s ease-in-out infinite alternate;
}

.pin-1 { top: 38%; right: 18%; animation-delay: 0.8s; }
.pin-2 { bottom: 30%; left: 22%; animation-delay: 1.8s; color: #ea4335; }

/* 5. MINI TAXI ICONS */
.mini-taxi {
    position: absolute;
    color: #fbbc04;
    z-index: 6;
    font-size: 20px;
    animation: floatAnim 5s ease-in-out infinite alternate;
}

.taxi-1 { top: 18%; right: 5%; }
.taxi-2 { top: 28%; left: 35%; }

/* --- ANIMATIONS KEYFRAMES --- */

/* Rays Rotation */
@keyframes rotateRays {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Center Light Pulse */
@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Badges Floating Motion */
@keyframes floatAnim {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-visual-box { height: 320px; margin-top: 30px; }
    .sunburst-rays { width: 400px; height: 400px; margin-top: -200px; margin-left: -200px; }
    .badge-float { scale: 0.85; }
}

/* Buttons (Google Style Pill Buttons) */
.btn-gbp-primary {
    background-color: var(--google-blue);
    color: #ffffff !important;
    border-radius: 20px;
    border: none;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3);
}

.btn-gbp-primary:hover {
    background-color: var(--google-blue-hover);
    box-shadow: var(--google-hover-shadow);
}

.btn-gbp-wa {
    background-color: var(--google-green);
    color: #ffffff !important;
    border-radius: 20px;
    border: none;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.btn-gbp-wa:hover {
    background-color: var(--google-green-hover);
}

/* Section Containers */
.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--google-bg-gray) !important;
}

.section-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--google-text-dark);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--google-text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--google-border-color);
}

.hero-text h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--google-text-dark);
    margin-bottom: 15px;
}

.sub-headline {
    font-size: 18px;
    color: var(--google-text-muted);
    margin-bottom: 25px;
}

/* Cards (Fleet & Services) */
.fleet-card, .service-card {
    background: #ffffff;
    border: 1px solid var(--google-border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s ease;
}

.fleet-card:hover, .service-card:hover {
    box-shadow: var(--google-hover-shadow);
    border-color: transparent;
}

.fleet-card h3, .service-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--google-text-dark);
    margin-top: 15px;
}

.service-icon {
    font-size: 44px !important;
    color: var(--google-blue);
    background: #e8f0fe;
    padding: 12px;
    border-radius: 50%;
}

/* Route Boxes */
.route-box {
    background: #ffffff;
    border: 1px solid var(--google-border-color);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-box h4 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-box h4 .material-symbols-outlined {
    color: var(--google-blue);
}

/* GMB Rating Card */
.gmb-rating-card {
    background: #ffffff;
    border: 1px solid var(--google-border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--google-card-shadow);
}

.gmb-rating-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 5px;
}

.star-rating .material-symbols-outlined {
    color: #fbbc04;
    font-size: 22px;
}

/* Full Width Banner */
.full-cta-banner {
    background: var(--google-blue);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.full-cta-banner h2 {
    font-weight: 500;
    margin-bottom: 10px;
}

.cta-phone a {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Footer Style */
footer {
    background: #ffffff;
    color: var(--google-text-muted);
    border-top: 1px solid var(--google-border-color);
    padding: 50px 0 80px;
}

footer h4 {
    color: var(--google-text-dark);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

footer a {
    color: var(--google-text-muted);
    text-decoration: none;
}

footer a:hover {
    color: var(--google-blue);
}

/* Bottom Sticky Floating Buttons (Mobile Only) */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-call-sticky { background-color: var(--google-blue); }
.btn-wa-sticky { background-color: var(--google-green); }
