/* Global Styles */
:root {
    --primary: #FFD700;
    --primary-dark: #FFC000;
    --secondary: #333333;
    --light: #ffffff;
    --dark: #222222;
    --gray: #f5f5f5;
    --text: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    background-clip: padding-box;
    border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Optimize for reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Section styling */
section {
    scroll-margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Focus states */
:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Improve text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

/* Smooth scrolling container */
.scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

section {
    padding: 40px 0;
}

.about {
    padding-top: 20px;
}

/* Text Selection Styling */
::selection {
    background-color: #ffd700; /* Yellow highlight */
    color: #000; /* Black text for better contrast */
}

::-moz-selection {
    background-color: #ffd700; /* Yellow highlight for Firefox */
    color: #000;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    height: 100%;
    padding: 5px 0;
}

.logo i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav-links li {
    margin: 0 6px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn {
    padding: 0 16px;
    border-radius: 30px;
    background-color: var(--primary);
    color: #2c3e50;
    margin-left: 8px;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links .btn:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.nav-links .btn::after {
    display: none;
}

/* FAQ Section */
.faq {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: white;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    padding: 10px 0;
    line-height: 1.6;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-links li {
        margin-left: 20px;
    }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        padding: 10px 20px;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .nav-links .btn {
        margin: 5px 10px;
    }
}

/* Highlight Text */
.highlight {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
    padding: 80px 0 30px; /* Increased top padding from 60px to 80px */
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: flex-start;
}

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

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-logo {
    width: 800px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 0 0 auto;
    display: block;
    transform: scale(1.2);
    transform-origin: right center;
    position: relative;
    right: -100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text);
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        align-items: center;
        order: 2; /* Move text below image */
        margin-top: 20px; /* Add some space between logo and text */
    }
    
    .hero-image {
        order: 1; /* Move image above text */
        margin: 0 auto; /* Center the image container */
    }
    
    .hero-logo {
        max-height: 300px;
        transform: none; /* Remove the right offset */
        right: 0; /* Reset right position */
        margin: 0 auto; /* Center the logo */
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about {
    background-color: var(--light);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background-color: var(--gray);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Safety Section */
.safety {
    background-color: var(--light);
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.safety-item {
    padding: 30px 20px;
    background-color: var(--gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.safety-item:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.safety-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.safety-item:hover i {
    color: var(--dark);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.pricing-simple {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-simple .btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pricing-simple .btn-large i {
    font-size: 1.2em;
}

.pricing-simple p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pricing-simple .small {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 50px;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
}

.features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    color: #333333;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-header p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.info-section {
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateX(5px);
}

.info-section h3 {
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section h3 i {
    color: var(--primary);
    font-size: 1.1em;
}

.contact-link {
    color: #333333 !important;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.contact-link:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.info-section p {
    color: #666666;
    margin: 10px 0 0 0;
    line-height: 1.6;
}

/* Payment Info Styles */
.payment-info {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
}

.payment-method {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-method h4 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Keep the credit card icon gold for visual hierarchy */
.payment-method h4 i {
    color: var(--primary);
}

.payment-btn {
    background: var(--primary);
    color: #1a252f !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.payment-btn:hover {
    background: #ffea00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.payment-note {
    font-size: 0.85rem;
    color: #bdc3c7;
    margin-top: 10px;
}

/* FAQ Preview Styles */
.faq-preview {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.faq-preview h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.faq-preview h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.faq-preview .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-preview .faq-question {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: #f9f9f9;
    border: none;
    border-left: 3px solid var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-preview .faq-question:hover {
    background: #f0f0f0;
}

.faq-preview .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    padding: 0 20px;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.faq-preview .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 15px;
}

.faq-preview .btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
}

.faq-preview .btn-outline:hover {
    background: var(--primary);
    color: #1a252f;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-preview {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .info-section h3 {
        font-size: 1.1rem;
    }
}
.payment-note {
    color: #333;
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.payment-note:first-child {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.payment-note:last-child {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.payment-btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #28a745;
    color: white !important;
    text-decoration: none;
    padding: 30px 40px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    border: none;
    cursor: pointer;
}

.payment-btn-large i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.payment-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: #218838;
}

.secure-note {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: normal;
    opacity: 0.9;
    font-style: italic;
}

.zelle-payment {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.zelle-payment h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zelle-payment h4 i {
    color: #6f42c1;
}

.zelle-payment p {
    color: #495057;
    margin: 8px 0;
    font-size: 1rem;
}

.zelle-payment .note {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 15px !important;
}

.contact-form h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: var(--primary);
    color: #2c3e50;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-btn {
    background: #28a745 !important;
    padding: 15px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 6px !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 2;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .payment-section {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info, .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact h3 {
        font-size: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 0 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 1.5rem;
    margin-right: 8px;
    color: #ffd700;
}

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
}

footer p {
    margin: 8px 0;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.4;
}

footer a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    padding: 0 5px;
    border-radius: 3px;
}

footer a:hover {
    color: #fff;
    background-color: rgba(255, 215, 0, 0.1);
    text-decoration: none;
    padding: 2px 5px;
}

footer a[href^="tel:"], 
footer a[href^="mailto:"] {
    display: inline-block;
    margin: 0 4px;
    padding: 2px 8px;
}

.footer-content > p:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.credit {
    margin-top: 15px !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.credit a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.2s ease;
}

.credit a:hover {
    color: #fff !important;
    background: none !important;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    /* Center all text content on mobile */
    body {
        text-align: center;
    }
    
    /* Center hero content */
    .hero {
        padding: 40px 0 20px;  /* Reduced top padding from 80px to 40px and bottom from 40px to 20px */
        min-height: auto;
        display: flex;
        align-items: flex-start;  /* Changed from center to flex-start to move content up */
        justify-content: center;
        text-align: center;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-image {
        margin: 0 auto 10px;  /* Reduced bottom margin from 20px to 10px */
        max-width: 250px;     /* Slightly reduced max-width */
        width: 100%;
    }
    
    .hero-logo {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin: 0 auto 15px;
        width: 100%;
    }
    
    .hero-content p {
        margin: 0 auto 25px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .btn-large {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Center features and cards */
    .features, .service-cards, .safety-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .feature, .service-card, .safety-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    /* Center contact section */
    .contact-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .contact-info, .contact-form {
        text-align: center;
        width: 100%;
    }
    
    /* Center buttons */
    .btn, .btn-large {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center footer content */
    footer {
        text-align: center;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4CAF50;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    max-width: 350px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    margin-right: 12px;
    font-size: 1.5rem;
}
