/* Modern Contact Page Styles */

/* Professional Blue Theme Variables */
:root {
  /* Primary Colors - Professional Blue Palette */
  --primary-color: #0466c8;     /* Bright Blue */
  --primary-light: #0353a4;     /* Medium Blue */
  --primary-medium: #023e7d;    /* Deep Blue */
  --primary-bright: #0466c8;    /* Bright Blue */
  --secondary-color: #002855;   /* Navy Blue */
  --secondary-light: #001845;   /* Dark Navy */
  --accent-color: #33415c;      /* Blue Gray */
  --accent-light: #5c677d;      /* Light Blue Gray */
  --accent-lighter: #7d8597;    /* Lighter Blue Gray */
  --accent-lightest: #979dac;   /* Lightest Blue Gray */

  /* Background Colors */
  --bg-light: #ffffff;         /* Pure White */
  --bg-dark: #001233;          /* Deep Navy */
  --bg-darker: #001845;        /* Darker Navy */
  --bg-secondary: #f8fafc;     /* Light Blue Tinted Background */
  --bg-tertiary: #f1f5f9;      /* Blue Tinted Background */

  /* Typography */
  --text-dark: #001233;        /* Deep Navy Text */
  --text-light: #ffffff;       /* Pure White Text */
  --text-muted: #5c677d;       /* Blue Gray Muted Text */
  --text-secondary: #33415c;   /* Blue Gray Secondary */
  --text-body: #002855;        /* Navy Body Text */

  /* Borders & Shadows */
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Radius & Transitions */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --transition-fast: all 0.15s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Hero Section - Professional Blue Design */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-medium) 40%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(4, 102, 200, 0.3) 0%, transparent 60%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.4"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    z-index: 2;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: -0.025em;
    word-wrap: break-word;
    hyphens: auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-sub-title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

/* Contact Buttons Container */
.contact-buttons-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
}

/* Contact Button Styles */
.contact-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
}

.hero-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.hero-btn.primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.hero-btn.primary:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Modern Contact Methods Section */
.modern-contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.modern-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(4, 102, 200, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(4, 102, 200, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.modern-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.modern-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.modern-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.modern-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Modern Contact Cards */
.modern-contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.modern-contact-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.phone-card .icon-container {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.whatsapp-card .icon-container {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-card .icon-container {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.location-card .icon-container {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.modern-contact-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.contact-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.card-action {
    margin-top: auto;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 102, 200, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.location-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
}

.location-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.contact-method-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.contact-method-card:hover::after {
    transform: translateX(100%);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method-card:hover .card-background {
    backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.contact-method-card:hover .card-background::before {
    opacity: 1;
}

.phone-card .card-background {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(147, 51, 234, 0.12) 50%, 
        rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.whatsapp-card .card-background {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.15) 0%, 
        rgba(16, 185, 129, 0.12) 50%, 
        rgba(37, 211, 102, 0.08) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.email-card .card-background {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(245, 101, 101, 0.12) 50%, 
        rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.location-card .card-background {
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.15) 0%, 
        rgba(139, 92, 246, 0.12) 50%, 
        rgba(168, 85, 247, 0.08) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Enhanced glassmorphism for hover states */
.phone-card:hover .card-background {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(147, 51, 234, 0.18) 50%, 
        rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.whatsapp-card:hover .card-background {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.2) 0%, 
        rgba(16, 185, 129, 0.18) 50%, 
        rgba(37, 211, 102, 0.15) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.1);
}

.email-card:hover .card-background {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.2) 0%, 
        rgba(245, 101, 101, 0.18) 50%, 
        rgba(239, 68, 68, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

.location-card:hover .card-background {
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.2) 0%, 
        rgba(139, 92, 246, 0.18) 50%, 
        rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-background::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contact-icon-wrapper:hover .icon-background {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 25px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-icon-wrapper:hover .icon-background::before {
    opacity: 1;
}

/* Card-specific icon backgrounds */
.phone-card .icon-background {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.whatsapp-card .icon-background {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.email-card .icon-background {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.location-card .icon-background {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Enhanced hover states for card-specific icons */
.phone-card:hover .icon-background {
    background: rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.whatsapp-card:hover .icon-background {
    background: rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.email-card:hover .icon-background {
    background: rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.3);
}

.location-card:hover .icon-background {
    background: rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

.contact-icon {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-icon-wrapper:hover .contact-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-method-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-details {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-number, .contact-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-availability {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.office-address {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.contact-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: tagSlideIn 0.6s ease-out forwards;
}

.feature-tag:nth-child(1) { animation-delay: 0.5s; }
.feature-tag:nth-child(2) { animation-delay: 0.6s; }

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

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: buttonSlideIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

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

.contact-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-action-btn:hover::before {
    left: 100%;
}

.contact-action-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-action-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.contact-action-btn i {
    transition: transform 0.3s ease;
}

.contact-action-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-medium) 40%, var(--secondary-color) 100%);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(4, 102, 200, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.form-group:has(textarea) .form-icon {
    top: 3rem;
    transform: none;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-medium) 100%);
    color: var(--text-light);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(4, 102, 200, 0.4);
}

.map-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.interactive-map {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

.office-hours-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hour-item.emergency {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.day {
    color: white;
    font-weight: 600;
}

.time {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.current-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
}

.status-text {
    color: white;
    font-weight: 600;
}

/* Modern FAQ Section */
.modern-faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-medium) 40%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(4, 102, 200, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-category {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.category-title i {
    font-size: 1.25rem;
    color: #ffd700;
}

.modern-faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(4, 102, 200, 0.1);
    transition: var(--transition);
}

.modern-faq-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(4, 102, 200, 0.2);
}

.faq-question-modern {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.question-content {
    flex: 1;
}

.question-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.question-tag {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.question-icon i {
    color: #ffffff;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.modern-faq-item.active .question-icon {
    background: #ffd700;
    transform: rotate(45deg);
}

.modern-faq-item.active .question-icon i {
    color: #333;
    transform: rotate(45deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.modern-faq-item.active .faq-answer-modern {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.answer-content {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.answer-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.answer-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-item i {
    color: #ffd700;
}

.policy-timeline {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-item .time {
    display: block;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.timeline-item .status {
    display: block;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
}

.status.free {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status.charged {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.fuel-policy {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.policy-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.insurance-options {
    margin-top: 1rem;
}

.insurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.insurance-item.included {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
}

.insurance-item.optional {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.insurance-item i {
    font-size: 1.1rem;
}

.insurance-item.included i {
    color: #2ecc71;
}

.insurance-item.optional i {
    color: #3498db;
}

.service-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.pricing-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.price-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.price-item .price {
    display: block;
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.price-item .price-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.faq-contact-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.faq-contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.faq-contact-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
}

.cta-btn.whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-btn.phone {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}

.cta-btn.phone:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
 }
 
 /* Testimonials Section */
 .testimonials-section {
     padding: 100px 0;
     background: var(--bg-secondary);
     position: relative;
     overflow: hidden;
 }
 
 .testimonials-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: 
         radial-gradient(circle at 30% 70%, rgba(4, 102, 200, 0.05) 0%, transparent 50%),
         radial-gradient(circle at 70% 30%, rgba(4, 102, 200, 0.05) 0%, transparent 50%);
     pointer-events: none;
 }
 
 .testimonials-header {
     text-align: center;
     margin-bottom: 60px;
 }
 
 .testimonials-title {
     font-size: 3rem;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 1rem;
 }
 
 .testimonials-subtitle {
     font-size: 1.2rem;
     color: #7f8c8d;
     max-width: 600px;
     margin: 0 auto;
 }
 
 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-bottom: 60px;
 }
 
 .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(4, 102, 200, 0.1);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 102, 200, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(4, 102, 200, 0.2);
}
 
 .testimonial-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 1.5rem;
 }
 
 .customer-info {
     display: flex;
     align-items: center;
     gap: 1rem;
 }
 
 .customer-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(45deg, #667eea, #764ba2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     font-size: 1.2rem;
 }
 
 .customer-details h4 {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--text-dark);
     margin: 0 0 0.25rem 0;
 }
 
 .customer-location {
     font-size: 0.9rem;
     color: var(--text-muted);
     margin: 0;
 }
 
 .rating {
     display: flex;
     gap: 0.25rem;
 }
 
 .rating i {
     color: var(--primary-color);
     font-size: 1rem;
 }
 
 .testimonial-content {
     margin-bottom: 1.5rem;
 }
 
 .testimonial-content p {
     font-size: 1rem;
     line-height: 1.6;
     color: var(--text-secondary);
     margin: 0;
     font-style: italic;
     position: relative;
 }
 
 .testimonial-content p::before {
     content: '"';
     font-size: 3rem;
     color: var(--primary-light);
     position: absolute;
     top: -10px;
     left: -10px;
     font-family: serif;
 }
 
 .testimonial-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 1rem;
     border-top: 1px solid #ecf0f1;
 }
 
 .service-type {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     background: linear-gradient(45deg, #667eea, #764ba2);
     color: #ffffff;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
 }
 
 .service-type i {
     font-size: 0.9rem;
 }
 
 .date {
     font-size: 0.85rem;
     color: #95a5a6;
     font-weight: 500;
 }
 
 .testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
 
 .stat-item {
     text-align: center;
     padding: 1rem;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
 }
 
 .stat-item:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
 }
 
 .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.5rem;
    display: block;
}
 
 .stat-label {
     font-size: 1rem;
     color: var(--primary-color);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }
 
 /* Floating Action Buttons */
 .floating-actions {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
 }
 
 .fab-container {
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     bottom: 0;
     right: 17rem;
 }
 
 .fab-main {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(45deg, #667eea, #764ba2);
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
     transition: all 0.3s ease;
     position: relative;
     z-index: 1001;
 }
 
 .fab-main:hover {
     transform: scale(1.1);
     box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
 }
 
 .fab-icon,
 .fab-close {
     color: #ffffff;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     position: absolute;
 }
 
 .fab-close {
     opacity: 0;
     transform: rotate(180deg);
 }
 
 .fab-container.active .fab-icon {
     opacity: 0;
     transform: rotate(-180deg);
 }
 
 .fab-container.active .fab-close {
     opacity: 1;
     transform: rotate(0deg);
 }
 
 .fab-options {
     position: absolute;
     bottom: 80px;
     right: 0;
     display: flex;
     flex-direction: column;
     gap: 15px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
     transition: all 0.3s ease;
 }
 
 .fab-container.active .fab-options {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }
 
 .fab-option {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     border: none;
     cursor: pointer;
     box-shadow: 0 6px 20px rgba(0,0,0,0.15);
     transition: all 0.3s ease;
     position: relative;
     transform: scale(0);
 }
 
 .fab-container.active .fab-option {
     transform: scale(1);
 }
 
 .fab-container.active .fab-option:nth-child(1) {
     transition-delay: 0.1s;
 }
 
 .fab-container.active .fab-option:nth-child(2) {
     transition-delay: 0.15s;
 }
 
 .fab-container.active .fab-option:nth-child(3) {
     transition-delay: 0.2s;
 }
 
 .fab-container.active .fab-option:nth-child(4) {
     transition-delay: 0.25s;
 }
 
 .fab-option.whatsapp {
     background: linear-gradient(45deg, #25d366, #128c7e);
     color: #ffffff;
 }
 
 .fab-option.phone {
     background: linear-gradient(45deg, #3498db, #2980b9);
     color: #ffffff;
 }
 
 .fab-option.email {
     background: linear-gradient(45deg, #e74c3c, #c0392b);
     color: #ffffff;
 }
 
 .fab-option.location {
     background: linear-gradient(45deg, #f39c12, #e67e22);
     color: #ffffff;
 }
 
 .fab-option:hover {
     transform: scale(1.1);
     box-shadow: 0 8px 25px rgba(0,0,0,0.25);
 }
 
 .fab-option i {
     font-size: 1.2rem;
 }
 
 /* Tooltip for FAB options */
 .fab-option::before {
     content: attr(data-tooltip);
     position: absolute;
     right: 60px;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0,0,0,0.8);
     color: #ffffff;
     padding: 8px 12px;
     border-radius: 6px;
     font-size: 0.85rem;
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     pointer-events: none;
 }
 
 .fab-option::after {
     content: '';
     position: absolute;
     right: 52px;
     top: 50%;
     transform: translateY(-50%);
     border: 6px solid transparent;
     border-left-color: rgba(0,0,0,0.8);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }
 
 .fab-option:hover::before,
     .fab-option:hover::after {
         opacity: 1;
         visibility: visible;
     }
     
     /* Modern CTA Section */
    .modern-cta-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-medium) 40%, var(--secondary-color) 100%);
        overflow: hidden;
        color: var(--text-light);
    }
     
     .cta-background {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         z-index: 1;
     }
     
     .cta-particles {
         position: absolute;
         width: 100%;
         height: 100%;
         background-image: 
             radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
             radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
             radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
             radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
             radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
         background-repeat: repeat;
         background-size: 200px 100px;
         animation: particleFloat 20s linear infinite;
     }
     
     @keyframes particleFloat {
         0% { transform: translateY(0px) rotate(0deg); }
         100% { transform: translateY(-100px) rotate(360deg); }
     }
     
     .cta-gradient-overlay {
         position: absolute;
         width: 100%;
         height: 100%;
         background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
     }
     
     .cta-content {
         position: relative;
         z-index: 2;
         text-align: center;
         max-width: 1000px;
         margin: 0 auto;
     }
     
     .cta-header {
         margin-bottom: 60px;
     }
     
     .cta-badge {
         display: inline-flex;
         align-items: center;
         gap: 8px;
         background: rgba(255, 255, 255, 0.2);
         backdrop-filter: blur(10px);
         padding: 12px 24px;
         border-radius: 50px;
         font-size: 0.9rem;
         font-weight: 600;
         margin-bottom: 20px;
         border: 1px solid rgba(255, 255, 255, 0.3);
         animation: badgePulse 2s ease-in-out infinite;
     }
     
     @keyframes badgePulse {
         0%, 100% { transform: scale(1); }
         50% { transform: scale(1.05); }
     }
     
     .cta-title {
         font-size: 3.5rem;
         font-weight: 700;
         margin-bottom: 20px;
         background: linear-gradient(45deg, #ffffff, #f8f9ff);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
         line-height: 1.2;
     }
     
     .cta-subtitle {
         font-size: 1.3rem;
         opacity: 0.9;
         max-width: 600px;
         margin: 0 auto;
         line-height: 1.6;
     }
     
     .cta-features {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 30px;
         margin-bottom: 50px;
     }
     
     .cta-feature {
         display: flex;
         align-items: center;
         gap: 20px;
         background: rgba(255, 255, 255, 0.1);
         backdrop-filter: blur(10px);
         padding: 25px;
         border-radius: 15px;
         border: 1px solid rgba(255, 255, 255, 0.2);
         transition: all 0.3s ease;
     }
     
     .cta-feature:hover {
         transform: translateY(-5px);
         background: rgba(255, 255, 255, 0.15);
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     }
     
     .feature-icon {
         width: 60px;
         height: 60px;
         background: rgba(255, 255, 255, 0.2);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.5rem;
         flex-shrink: 0;
     }
     
     .feature-content h4 {
         font-size: 1.2rem;
         font-weight: 600;
         margin-bottom: 5px;
     }
     
     .feature-content p {
         opacity: 0.8;
         margin: 0;
     }
     
     .cta-actions {
         display: flex;
         gap: 20px;
         justify-content: center;
         margin-bottom: 50px;
         flex-wrap: wrap;
     }
     
     .cta-btn {
         position: relative;
         padding: 18px 35px;
         border-radius: 50px;
         text-decoration: none;
         font-weight: 600;
         font-size: 1.1rem;
         display: inline-flex;
         align-items: center;
         gap: 12px;
         transition: all 0.3s ease;
         overflow: hidden;
         border: 2px solid transparent;
     }
     
     .cta-btn.primary {
         background: linear-gradient(45deg, #25d366, #128c7e);
         color: #ffffff;
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     }
     
     .cta-btn.primary:hover {
         transform: translateY(-3px);
         box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
     }
     
     .cta-btn.secondary {
         background: transparent;
         color: #ffffff;
         border-color: rgba(255, 255, 255, 0.5);
         backdrop-filter: blur(10px);
     }
     
     .cta-btn.secondary:hover {
         background: rgba(255, 255, 255, 0.1);
         border-color: #ffffff;
         transform: translateY(-3px);
     }
     
     .btn-shine {
         position: absolute;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100%;
         background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
         transition: left 0.6s ease;
     }
     
     .cta-btn.primary:hover .btn-shine {
         left: 100%;
     }
     
     .cta-stats {
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 40px;
         flex-wrap: wrap;
     }
     
     .stat-item {
         text-align: center;
     }
     
     .stat-number {
         display: block;
         font-size: 2.5rem;
         font-weight: 700;
         margin-bottom: 5px;
         background: linear-gradient(45deg, #ffffff, #f8f9ff);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
     }
     
     .stat-label {
         font-size: 0.9rem;
         opacity: 0.8;
         text-transform: uppercase;
         letter-spacing: 1px;
     }
     
     .stat-divider {
         width: 1px;
         height: 50px;
         background: rgba(255, 255, 255, 0.3);
     }
     
     /* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .contact-method-card {
        height: 450px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .modern-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .contact-methods, .modern-contact-section {
        padding: 5rem 0;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .modern-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .contact-method-card {
        height: 380px;
    }
    
    .contact-methods, .modern-contact-section {
        padding: 4rem 0;
    }
    
    .section-header, .modern-section-header {
        margin-bottom: 3rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modern-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-contact-section {
        padding: 3rem 1rem;
    }
    
    .modern-title {
        font-size: 2rem;
    }
    
    .modern-subtitle {
        font-size: 1rem;
    }
    
    .modern-contact-card {
        padding: 1.5rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .icon-container {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-method-card {
        height: auto;
        min-height: 320px;
        border-radius: 20px;
    }
    
    .contact-method-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .contact-methods {
        padding: 3rem 0;
    }
    
    .section-header, .modern-section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .modern-contact-section {
        padding: 2rem 0.5rem;
    }
    
    .modern-title {
        font-size: 1.75rem;
    }
    
    .modern-contact-grid {
        gap: 1rem;
    }
    
    .modern-contact-card {
        padding: 1.25rem;
    }
    
    .card-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .icon-container {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .contact-number {
        font-size: 1rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
    
    .modern-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .contact-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .contact-method-card {
        min-height: 300px;
        border-radius: 16px;
    }
    
    .contact-methods {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .contact-grid {
        padding: 0 0.25rem;
    }
    
    .contact-method-card {
        min-height: 280px;
        border-radius: 12px;
    }
    
    .card-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-method-title {
        font-size: 1.25rem;
    }
    
    .contact-action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .faq-main-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-category {
        padding: 1.5rem;
    }
    
    .policy-timeline,
    .fuel-policy,
    .service-features,
    .pricing-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }
     
     .testimonials-title {
         font-size: 2.5rem;
     }
     
     .testimonials-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .testimonial-card {
         padding: 1.5rem;
     }
     
     .testimonial-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 1rem;
     }
     
     .customer-info {
         width: 100%;
     }
     
     .testimonial-footer {
         flex-direction: column;
         align-items: flex-start;
         gap: 1rem;
     }
     
     .testimonials-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
         padding: 2rem 1rem;
     }
     
     .stat-number {
         font-size: 2.5rem;
     }
     
     
     /* Modern CTA Section - Mobile */
     .modern-cta-section {
         padding: 60px 0;
     }
     
     .cta-title {
         font-size: 2.5rem;
     }
     
     .cta-subtitle {
         font-size: 1.1rem;
         padding: 0 20px;
     }
     
     .cta-features {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-bottom: 40px;
     }
     
     .cta-feature {
         padding: 20px;
         text-align: left;
     }
     
     .cta-actions {
         flex-direction: column;
         align-items: center;
         gap: 15px;
         margin-bottom: 40px;
     }
     
     .cta-btn {
         padding: 15px 30px;
         font-size: 1rem;
         width: 100%;
         max-width: 280px;
         justify-content: center;
     }
     
     .cta-stats {
         gap: 20px;
     }
     
     .stat-number {
         font-size: 2rem;
     }
     
     .stat-divider {
         display: none;
     }
 }