/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0F1A2B;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(15, 26, 43, 0.9);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #D4AF37;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 26, 43, 0.7), rgba(15, 26, 43, 0.9)), 
                url('img/photo-1715109862630-9d8c83591d5f.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E0E0E0;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #D4AF37;
    color: #0F1A2B;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
}

.btn:hover {
    background-color: transparent;
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #152238;
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.1);
}

.feature-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #0F1A2B;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #D4AF37;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    color: #0F1A2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #FFFFFF;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 26, 43, 0.8), rgba(15, 26, 43, 0.9)), 
                url('img/photo-1649936005543-d4ddc376e05b.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #0A121E;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 10px 0;
    color: #AAAAAA;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features .container {
        flex-direction: column;
    }
    
    .feature-card {
        margin: 10px 0;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin: 20px 0;
    }
}

/* How It Works Page */
.page-header {
    background: linear-gradient(rgba(15, 26, 43, 0.7), rgba(15, 26, 43, 0.9)), 
                url('img/photo-1721170628026-7f98c620eac6.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    width: 100%;
    font-size: 2.5rem;
    color: #D4AF37;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 2rem;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(212, 175, 55, 0.1);
}

.info-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
}

/* Toll Gates Page */
.map-container {
    height: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
    padding: 20px;
}

.map-placeholder img {
    max-width: 100%;
    border-radius: 8px;
}

.gate-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gate-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gate-card:hover {
    transform: translateY(-5px);
    background-color: rgba(212, 175, 55, 0.1);
}

.gate-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* Tariffs Page */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.1);
}

.pricing-card.featured {
    border: 2px solid #D4AF37;
    position: relative;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #D4AF37;
    color: #0F1A2B;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    color: #FFFFFF;
}

.price span {
    font-size: 1rem;
    color: #AAAAAA;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    cursor: pointer;
}