/* 
   Infinity Car Care - Main Stylesheet
   Created: May 21, 2025
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for the entire document */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px; /* Increased logo size from 50px to 65px */
    margin-right: 12px; /* Adjusted margin to maintain spacing */
}

.brand-name {
    color: #fff;
    font-size: 1.6rem; /* Slightly increased font size */
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #35FF00;
}

/* Smooth scroll offset for fixed navbar */
.nav-links a[href^="#"] {
    scroll-margin-top: 80px;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 50px; /* Full rounded buttons */
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
}

/* Navbar specific button styles */
.navbar .btn-login,
.navbar .btn-signup {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-login {
    color: #fff;
    background: transparent;
    border: 1px solid #35FF00;
}

.btn-login:hover {
    background: rgba(53, 255, 0, 0.1);
}

.btn-signup {
    color: #000;
    background: #35FF00;
    border: 1px solid #35FF00;
}

.btn-signup:hover {
    opacity: 0.9;
}

.btn-primary {
    background: #35FF00; /* Green */
    color: #000; /* Black text as requested */
    font-weight: 600;
}

.btn-primary:hover {
    background: #28CC00;
}

.btn-secondary {
    background: transparent; /* Changed to transparent */
    color: #fff;
    border: 2px solid #35FF00;
}

.btn-secondary:hover {
    background: rgba(53, 255, 0, 0.1); /* Slightly visible green on hover */
    border-color: #28CC00;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for better text visibility */
    z-index: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Removed conflicting custom animations for hero elements - now using AOS */
.hero-arabic {
    color: #35FF00;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #eee;
}

.hero-details-item {
    display: flex;
    align-items: center;
}

.icon {
    color: #35FF00;
    margin-right: 0.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator svg {
    width: 3.5rem;
    height: 3.5rem;
    color: #35FF00;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    z-index: 1001;
    position: relative;
    padding: 10px;
    background: transparent;
    border: none;
}

/* Animated Hamburger Icon */
.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 7px;
}

.hamburger-icon span:nth-child(3) {
    top: 14px;
}

/* Animated states when menu is active */
.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(135deg);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-135deg);
}

/* Mobile Dropdown Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(13, 27, 42, 0.95) 100%);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
    text-align: center;
}

/* Mobile Logo Section */
.mobile-logo-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.mobile-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    border: 3px solid #35FF00;
    padding: 10px;
    background: rgba(53, 255, 0, 0.1);
    display: block;
}

.mobile-brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mobile-brand-arabic {
    font-size: 1.1rem;
    color: #35FF00;
    font-weight: 400;
    margin-bottom: 0;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    margin-bottom: 40px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(53, 255, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out both;
}

.mobile-nav-links a:nth-child(1) { animation-delay: 0.3s; }
.mobile-nav-links a:nth-child(2) { animation-delay: 0.4s; }
.mobile-nav-links a:nth-child(3) { animation-delay: 0.5s; }
.mobile-nav-links a:nth-child(4) { animation-delay: 0.6s; }

.mobile-nav-links a:hover {
    background: rgba(53, 255, 0, 0.15);
    border-color: #35FF00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 255, 0, 0.2);
}

.mobile-nav-links a i {
    margin-right: 15px;
    font-size: 1.3rem;
    color: #35FF00;
    width: 25px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 250px;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out both;
}

.mobile-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
}

.mobile-btn-login {
    background: transparent;
    color: #35FF00;
    border: 2px solid #35FF00;
    animation-delay: 0.7s;
}

.mobile-btn-login:hover {
    background: #35FF00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 255, 0, 0.3);
}

.mobile-btn-signup {
    background: linear-gradient(135deg, #35FF00 0%, #28CC00 100%);
    color: #000;
    border: 2px solid transparent;
    animation-delay: 0.8s;
}

.mobile-btn-signup:hover {
    background: linear-gradient(135deg, #28CC00 0%, #1EA400 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 255, 0, 0.4);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Packages Section Styles */
.packages {
    padding: 100px 0;
    background-color: #000;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #35FF00;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.package-card {
    background-color: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.featured {
    border: 2px solid #35FF00;
}

.vip {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
}

.vip:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4) !important;
}

.vip .package-title {
    color: #ffd700 !important;
}

.vip .price-amount {
    color: #ffd700 !important;
}

.vip .package-features .fa-check {
    color: #ffd700 !important;
}

.vip .btn-primary {
    background: #ffd700 !important;
    color: #000 !important;
    border: 2px solid #ffd700 !important;
}

.vip .btn-primary:hover {
    background: #ffed4e !important;
    color: #000 !important;
}

.vip .featured-label {
    background-color: #ffd700 !important;
    color: #000 !important;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: #35FF00;
    color: #000;
    font-weight: 600;
    padding: 5px 40px;
    font-size: 0.9rem;
    transform: rotate(45deg);
    z-index: 1;
}

.vip .featured-label {
    background-color: #000;
    color: #fff;
}

.package-header {
    background-color: #191919;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #35FF00;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.price-period {
    font-size: 1rem;
    color: #aaa;
    display: block;
    width: 100%;
    margin-top: 5px;
}

.package-features {
    padding: 30px 20px;
    flex-grow: 1; /* Allow features section to grow and fill space */
}

.package-features ul {
    list-style: none;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #333;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.package-features .fa-check {
    color: #35FF00;
}

.package-features .fa-times {
    color: #e74c3c;
}

.package-features .fa-info-circle {
    color: #f39c12;
}

.package-footer {
    padding: 0 20px 30px;
    text-align: center;
    margin-top: auto; /* Push footer to the bottom */
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #35FF00;
}

.btn-outline:hover {
    background: rgba(53, 255, 0, 0.1);
}

.featured .btn-primary {
    background: #35FF00;
    color: #000;
}

.featured .btn-primary:hover {
    background: #28CC00;
}

/* Services Section Styles */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #000, #0a0a0a);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #111;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Removed conflicting custom animations - now using AOS */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(53, 255, 0, 0.2);
    border-color: #35FF00;
}

.service-icon {
    margin-bottom: 20px;
    color: #35FF00;
    transition: all 0.3s ease;
}

.service-svg {
    width: 50px;
    height: 50px;
    font-size: 50px;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-description {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Removed custom animation index variables - now using AOS */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Contact Section Styles */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(53, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #35FF00;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact-details p {
    color: #aaa;
}

.contact-form {
    background-color: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #191919;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #35FF00;
    box-shadow: 0 0 0 1px #35FF00;
}

/* Footer Styles - New Modern Design */
.footer {
    background-color: #000;
    color: #fff;
    padding: 64px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding-bottom: 64px;
}

.footer-col {
    margin-bottom: 24px;
}

.footer-info {
    grid-column: span 2;
}

/* Logo and brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-arabic {
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-description {
    color: #888;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 450px;
    font-size: 0.95rem;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #888;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #35FF00;
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Headings */
.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #35FF00;
    margin-bottom: 24px;
    position: relative;
}

/* Links list */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #35FF00;
}

/* Smooth scroll for footer links */
.footer-link[href^="#"] {
    scroll-margin-top: 80px;
}

/* Contact list */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #35FF00;
    flex-shrink: 0;
}

.contact-text {
    color: #888;
    font-size: 0.95rem;
}

.map-link {
    display: block;
    color: #35FF00;
    text-decoration: none;
    margin-top: 4px;
}

.map-link:hover {
    text-decoration: underline;
}

/* Copyright section */
.copyright {
    border-top: 1px solid #222;
    padding: 24px 0;
}

.copyright-text {
    color: #666;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .footer-info {
        grid-column: span 1;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop navigation */
    .nav-links,
    .auth-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 48px;
    }
    
    .footer-grid {
        gap: 24px;
    }
}

/* Responsive styles for packages and contact sections */
@media (max-width: 1200px) {
    .package-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .package-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar-container {
        justify-content: space-between;
    }
    
    /* Adjust logo size for tablet view */
    .logo img {
        height: 55px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }
    
    /* Adjust logo size for mobile view */
    .logo img {
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Improved visibility for hero content on mobile */
    .hero-content {
        padding: 0 15px;
    }
    
    /* Enhanced mobile spacing for better content layout */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Add breathing room to sections on mobile */
    .services .container,
    .packages .container,
    .footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Improve services grid spacing */
    .services-grid {
        padding: 0 10px;
        gap: 20px;
    }
    
    /* Better packages container spacing */
    #packages-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Footer content spacing */
    .footer-grid {
        padding: 0 10px;
    }
}

/* Additional mobile spacing for very small screens */
@media (max-width: 480px) {
    /* Increase side spacing on very small screens */
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    /* Better hero content spacing */
    .hero-content {
        padding: 0 25px;
    }
    
    /* Improved section spacing */
    .services .container,
    .packages .container,
    .footer .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    /* Enhance packages grid spacing */
    #packages-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Better services grid layout */
    .services-grid {
        padding: 0 15px;
    }
    
    /* Footer improvements */
    .footer-grid {
        padding: 0 15px;
    }
    
    /* Section titles better spacing */
    .section-header {
        padding: 0 10px;
        margin-bottom: 2rem;
    }
}
