/* Smart Parking System - Ultra Modern, Dynamic & Elegant CSS */
/* Root Variables for Premium Color Scheme */
:root {
    --primary: #2b6cb0;
    --primary-light: #63b3ed;
    --primary-dark: #1a365d;
    --secondary: #5a67d8;
    --secondary-light: #7f9cf5;
    --accent: #553c9a;
    --success: #047857;
    --warning: #d69e2e;
    --error: #e53e3e;
    --dark: #12141f;
    --light: #f7fafc;
    --gray: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(18, 20, 31, 0.8);
  }
  
  /* Global Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  ul {
    list-style: none;
  }
  
  /* Enhanced Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 108, 176, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(43, 108, 176, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 108, 176, 0); }
  }
  
  @keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }
  
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 300% 0; }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes breathe {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }
  
  /* Modern Glass Morphism Effects */
  .glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
  }
  
  .glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  }
  
  /* Navigation Bar - Elevated Design */
  .navbar {
    background: transparent;
    color: var(--light);
    padding: 1.5rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .navbar.scrolled {
    background: var(--glass-dark);
    padding: 1rem 7%;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: -0.03em;
  }
  
  .logo i {
    color: var(--secondary-light);
    margin-right: 0.7rem;
    filter: drop-shadow(0 0 8px rgba(127, 156, 245, 0.5));
    animation: pulse 3s infinite;
  }
  
  .logo span {
    background: linear-gradient(135deg, var(--secondary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(43, 108, 176, 0.2);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: var(--light);
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    letter-spacing: 0.02em;
  }
  
  .nav-links a:hover {
    color: var(--secondary-light);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.07);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--secondary-light), var(--primary));
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
  }
  
  .nav-links a:hover::after {
    width: 70%;
  }
  
  /* Enhanced Location Dropdown */
  .location-dropdown {
    position: relative;
  }
  
  .location-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .location-link i {
    transition: transform 0.3s ease;
  }
  
  .location-link:hover i {
    transform: translateY(-2px);
  }
  
  .location-dropdown-content {
    display: none;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-dark);
    min-width: 220px;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 1;
    padding: 0.8rem 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }
  
  .location-dropdown:hover .location-dropdown-content {
    display: block;
  }
  
  .location-dropdown-content a {
    display: block;
    padding: 0.9rem 1.5rem;
    color: var(--light);
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
  }
  
  .location-dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    color: var(--secondary-light);
    border-left: 3px solid var(--secondary);
  }
  
  /* Hero Section - Dramatic & Bold */
  .section {
    padding: 6rem 7%;
  }
  
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(18, 20, 31, 0.9), rgba(43, 108, 176, 0.7)), url('https://source.unsplash.com/random/1920x1080/?futuristic,parking') no-repeat center center/cover;
    color: var(--light);
    padding: 4rem 2rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHQiIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgIDxyZWN0IHg9IjE5IiB5PSIwIiB3aWR0aD0iMiIgaGVpZ2h0PSI0MCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSI+PC9yZWN0PgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHQpIj48L3JlY3Q+Cjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--light), var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: float 6s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  
  .hero p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    max-width: 700px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
  }
  
  .btn-primary:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 15px 30px rgba(43, 108, 176, 0.6);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
  }
  
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite linear;
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--light);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: inset 0 0 0 2px var(--secondary-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
  }
  
  .btn-secondary:hover {
    transform: translateY(-7px);
    box-shadow: inset 0 0 0 2px var(--secondary), 0 10px 20px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
  }
  
  /* Animated Particle Effects */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite linear;
  }
  
  .particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-duration: 15s;
    animation-delay: 0s;
  }
  
  .particle:nth-child(2) {
    top: 50%;
    left: 80%;
    animation-duration: 20s;
    animation-delay: 2s;
  }
  
  .particle:nth-child(3) {
    top: 30%;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 1s;
  }
  
  .particle:nth-child(4) {
    top: 70%;
    left: 30%;
    animation-duration: 12s;
    animation-delay: 3s;
  }
  
  .particle:nth-child(5) {
    top: 20%;
    left: 90%;
    animation-duration: 22s;
    animation-delay: 2s;
  }
  
  /* Enhanced Info Cards */
  .info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
    margin-top: -5rem;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
  }
  
  .info-card {
    background: var(--light);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeIn 1s ease backwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(230, 235, 240, 0.9);
  }
  
  .info-card:nth-child(1) {
    animation-delay: 0.3s;
    border-top: 5px solid var(--primary);
  }
  
  .info-card:nth-child(2) {
    animation-delay: 0.6s;
    border-top: 5px solid var(--secondary);
  }
  
  .info-card:nth-child(3) {
    animation-delay: 0.9s;
    border-top: 5px solid var(--accent);
  }
  
  .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
    transform: translateY(100%);
  }
  
  .info-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    color: var(--light);
  }
  
  .info-card:hover::before {
    opacity: 1;
    transform: translateY(0);
  }
  
  .info-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
    display: inline-block;
  }
  
  .info-card:hover i {
    color: var(--light);
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
  }
  
  .info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
  }
  
  .info-card p {
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
    transition: all 0.4s ease;
  }
  
  .info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.05) 50%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: all 0.5s ease;
  }
  
  .info-card:hover::after {
    opacity: 1;
  }
  
  /* Features Section */
  .features {
    background: var(--light);
    padding: 8rem 7%;
    position: relative;
    overflow: hidden;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
  }
  
  .section-header h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--dark);
  }
  
  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }
  
  .section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #64748b;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .feature-card {
    background: #ffffff;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(230, 235, 240, 0.9);
  }
  
  .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    box-shadow: 0 10px 20px rgba(43, 108, 176, 0.2);
    transition: all 0.5s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  
  .feature-icon i {
    font-size: 2.5rem;
    color: white;
  }
  
  .feature-content {
    padding: 0 2rem 2.5rem;
    text-align: center;
  }
  
  .feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  .feature-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  /* Footer - Elegant & Modern */
  footer {
    background: linear-gradient(145deg, var(--dark), #1c1f3a);
    color: var(--light);
    padding: 5rem 7% 2rem;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHQiIHg9IjAiIHk9IjAiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgIDxyZWN0IHg9IjI5IiB5PSIwIiB3aWR0aD0iMiIgaGVpZ2h0PSI2MCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSI+PC9yZWN0PgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHQpIj48L3JlY3Q+Cjwvc3ZnPg==');
    opacity: 0.4;
    z-index: 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo i {
    color: var(--secondary-light);
    margin-right: 0.7rem;
    animation: pulse 3s infinite;
  }
  
  .footer-about p {
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    color: var(--secondary-light);
    position: relative;
    padding-bottom: 0.8rem;
  }
  
  .footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
    border-radius: 3px;
  }
  
  .footer-column ul li {
    margin-bottom: 1rem;
  }
  
  .footer-column ul li a, .footer-column ul li {
    color: #a0aec0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 400;
  }
  
  .footer-column ul li a:hover {
    color: var(--secondary-light);
    transform: translateX(8px);
  }
  
  .footer-column ul li a i {
    font-size: 1rem;
    color: var(--secondary-light);
  }
  
  .social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    transform: scale(0);
    border-radius: 50%;
  }
  
  .social-icons a:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .social-icons a:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  
  .social-icons i {
    font-size: 1.3rem;
    color: #a0aec0;
    transition: all 0.4s ease;
  }
  
  .social-icons a:hover i {
    color: var(--light);
  }
  
  .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #a0aec0;
    position: relative;
    z-index: 1;
  }
  
  .footer-bottom p {
    margin-bottom: 0.5rem;
  }
  
  .footer-bottom a {
    color: var(--secondary-light);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .footer-bottom a:hover {
    color: var(--light);
  }
  
  /* Enhanced Form Styles */
  .form-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 8rem 7%;
    position: relative;
    overflow: hidden;
  }
  
  form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(230, 235, 240, 0.9);
  }
  
  .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .form-header h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .form-header p {
    color: #64748b;
  }
  
  .form-group {
    margin-bottom: 2rem;
    position: relative;
  }
  input, select, textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 0.5rem;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #fafbfc;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.15);
    outline: none;
    background-color: #ffffff;
  }
  
  /* Float label effect */
  .float-label {
    position: relative;
  }
  
  .float-label label {
    position: absolute;
    left: 16px;
    top: 18px;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
  }
  
  .float-label input:focus ~ label,
  .float-label input:not(:placeholder-shown) ~ label,
  .float-label select:focus ~ label,
  .float-label select:not([value=""]):valid ~ label,
  .float-label textarea:focus ~ label,
  .float-label textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    left: 12px;
    font-size: 0.85rem;
    color: var(--primary);
    background: white;
    font-weight: 600;
  }
  
  label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
  }
  
  button[type="submit"] {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
    margin-top: 2rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
  }
  
  button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 108, 176, 0.4);
  }
  
  button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2.5s infinite linear;
  }
  
  .input-icon {
    position: relative;
  }
  
  .input-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: #a0aec0;
    transition: all 0.3s ease;
  }
  
  .input-icon input:focus + i {
    color: var(--primary);
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
  }
  
  .checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .checkbox-group label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 35px;
    user-select: none;
    margin: 0;
    font-weight: 500;
  }
  
  .checkbox-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: white;
  }
  
  .checkbox-group label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .checkbox-group input[type="checkbox"]:checked + label::before {
    background: var(--primary);
    border-color: var(--primary);
  }
  
  .checkbox-group input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
  
  .checkbox-group input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
  }
  
  /* QR Code Container Styles */
  .qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 235, 240, 0.9);
  }
  
  .qr-container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(85, 60, 154, 0.1));
    border-radius: 50%;
    top: -100px;
    right: -100px;
  }
  
  .qr-container::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(90, 103, 216, 0.1), rgba(43, 108, 176, 0.1));
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
  }
  
  .qr-code {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--gray);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    background: white;
  }
  
  .qr-code img {
    max-width: 180px;
    height: auto;
  }
  
  .qr-info {
    text-align: center;
    max-width: 400px;
  }
  
  .qr-info h4 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .qr-info p {
    color: #64748b;
    line-height: 1.7;
  }
  
  /* Advanced Features Section */
  .advanced-features {
    background: linear-gradient(135deg, var(--dark), #1a365d);
    color: var(--light);
    padding: 8rem 7%;
    position: relative;
    overflow: hidden;
  }
  
  .advanced-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHQiIHg9IjAiIHk9IjAiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgIDxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiPjwvY2lyY2xlPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHQpIj48L3JlY3Q+Cjwvc3ZnPg==');
    opacity: 0.3;
  }
  
  .advanced-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
  }
  
  .advanced-title h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .advanced-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #a0aec0;
    font-size: 1.2rem;
    line-height: 1.7;
  }
  
  .features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .feature-showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .feature-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  
  .feature-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .feature-showcase-item:hover::before {
    transform: scaleX(1);
  }
  
  .feature-showcase-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .feature-showcase-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .feature-showcase-item:hover .feature-showcase-icon {
    transform: rotate(-15deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .feature-showcase-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .feature-showcase-content p {
    color: #a0aec0;
    line-height: 1.7;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 8rem 7%;
    background: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-header {
    text-align: center;
    margin-bottom: 5rem;
  }
  
  .testimonial-header h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .testimonial-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }
  
  .testimonial-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.2rem;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(230, 235, 240, 0.9);
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-quote {
    font-size: 4rem;
    position: absolute;
    top: 20px;
    left: 25px;
    color: rgba(43, 108, 176, 0.1);
    font-family: 'Georgia', serif;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
  }
  
  .testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-author-info h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
  }
  
  .testimonial-author-info p {
    color: #64748b;
    font-size: 0.95rem;
  }
  
  .testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
  }
  
  .testimonial-rating i {
    color: #ffd166;
    font-size: 1rem;
  }
  
  /* Stats Section */
  .stats {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    padding: 5rem 7%;
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHQiIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxwYXRoIGQ9Ik0wIDIwIEw0MCAyMCBNMjAgMCBMMjAgNDAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dCkiPjwvcmVjdD4KPC9zdmc+');
    opacity: 0.3;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .stat-item {
    text-align: center;
    padding: 1rem;
  }
  
  .stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
    background: linear-gradient(135deg, white, #a0aec0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  /* CTA Section */
  .cta {
    padding: 8rem 7%;
    background: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 4rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 235, 240, 0.9);
  }
  
  .cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.03), rgba(85, 60, 154, 0.03));
    z-index: 0;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-content h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Media Queries for Enhanced Responsiveness */
  @media (max-width: 1200px) {
    html {
      font-size: 15px;
    }
    
    .section, .hero, .features, .advanced-features, .testimonials, .cta, .form-section, footer {
      padding-left: 5%;
      padding-right: 5%;
    }
  }
  
  @media (max-width: 992px) {
    html {
      font-size: 14px;
    }
    
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
      font-size: 3.5rem;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      padding: 1.5rem 5%;
    }
    
    .logo {
      margin-bottom: 1.5rem;
    }
    
    .nav-links {
      width: 100%;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
    
    .hero p {
      font-size: 1.3rem;
    }
    
    .info-container {
      margin-top: 2rem;
    }
    
    .form {
      padding: 2rem;
    }
    
    .cta-container {
      padding: 3rem 2rem;
    }
    
    .cta-content h2 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .section, .hero, .features, .advanced-features, .testimonials, .cta, .form-section, footer {
      padding-left: 4%;
      padding-right: 4%;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-column h4 {
        font-size: 1.2rem;
    }
    .footer-column ul li {
        font-size: 0.9rem;
    }
    .footer-bottom {
        font-size: 0.9rem;
    }
}
      
    
    .stats-grid {
      grid-template-columns: 1fr;
    }
    
    .btn-primary, .btn-secondary {
      width: 25%;
      margin-bottom: 1rem;
    }
    
    .hero-cta {
      flex-direction: column;
      width: 100%;
    }
    
    .section-header h2, .advanced-title h2, .testimonial-header h2, .cta-content h2 {
      font-size: 2.2rem;
    }
  
  
  /* Additional Custom Animations & Effects */
  /* Loading States */
  .loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(43, 108, 176, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s infinite linear;
  }
  
  /* Button loading state */
  button.loading {
    position: relative;
    pointer-events: none;
  }
  
  button.loading span {
    opacity: 0;
  }
  
  button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s infinite linear;
  }
  
  /* Success indicator */
  .success-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem;
    background: rgba(4, 120, 87, 0.1);
    border-radius: 8px;
    color: var(--success);
    font-weight: 600;
    margin: 1rem 0;
  }
  
  /* Error indicator */
  .error-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 8px;
    color: var(--error);
    font-weight: 600;
    margin: 1rem 0;
  }
  
  /* Custom scrollbar with smoother styling */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 10px;
    border: 2px solid var(--light);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }
  
  /* Animated Background */
  .animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(-45deg, rgba(43, 108, 176, 0.03), rgba(90, 103, 216, 0.03), rgba(26, 54, 93, 0.03), rgba(85, 60, 154, 0.03));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
  }
  
  @keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Logo heartbeat */
  @keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    40% { transform: scale(1); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .logo:hover i {
    animation: heartbeat 1.5s ease-in-out;
  }
  
  /* Floating elements for visual interest */
  .floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(8px);
    z-index: 0;
  }
  
  .float-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(to right, var(--primary-light), transparent);
    top: -150px;
    right: -150px;
    animation: float 20s infinite alternate ease-in-out;
  }
  
  .float-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(to left, var(--secondary-light), transparent);
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite alternate-reverse ease-in-out;
  }
  
  /* Hover card effect */
  .hover-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .hover-card:hover {
    transform: perspective(800px) rotateY(5deg) translateY(-10px);
    box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Accent blocks for sections */
  .accent-block {
    position: absolute;
    z-index: 0;
  }
  
  .accent-top-right {
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    border-radius: 0 0 0 100%;
    opacity: 0.1;
  }
  
  .accent-bottom-left {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(315deg, var(--accent), transparent);
    border-radius: 0 100% 0 0;
    opacity: 0.1;
  }
  
  /* Utility classes */
  .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .shadow-soft {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  .shadow-medium {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  
  .shadow-hard {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  }
  
  .border-gradient {
    border: double 4px transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary), var(--secondary));
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  /* Footer */
footer {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    padding: 70px 20px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color), var(--secondary-color), var(--primary-hover));
    background-size: 300% 100%;
    animation: gradient-shift 8s ease infinite;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.footer-logo i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 2.2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column ul li:hover {
    transform: translateX(8px);
}

.footer-column a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.social-icons a i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links li {
        margin: 8px 0;
    }
    .location-dropdown-content {
        width: 100%;
        position: absolute;
        left: 0;
        top: 70px;
        transform: translateY(0);
        opacity: 1;
    }



    .info-container {
        flex-direction: column;
        align-items: center;
    }
    .info-card {
        width: 90%;
        margin: 15px 0;
    }
    .availability-stats {
        flex-direction: column;
        align-items: center;
    }
    .stat {
        width: 100%;
        text-align: center;
    }
    .booking-container {
        padding: 20px;
    }
    .vehicle-options {
        flex-direction: column;
        align-items: center;
    }
    .vehicle-option {
        width: 90%;
        margin: 10px 0;
    }
    .slot-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    .contact-info {
        margin: 0;
        padding: 20px;
    }
    .contact-info h3 {
        font-size: 1.5rem;
    }
    .contact-item {
        font-size: 0.9rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-column h4 {
        font-size: 1.2rem;
    }
    .footer-column ul li {
        font-size: 0.9rem;
    }
    .footer-bottom {
        font-size: 0.9rem;
    }
}