/* Base Styles */
:root {
    --dark-blue: #0F1A2B;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    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: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 26, 43, 0.7), rgba(15, 26, 43, 0.7)), 
                url('img/photo-1461664054097-e319867377a0.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--dark-blue);
}

.features .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    flex: 0 0 30%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(212, 175, 55, 0.1);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Preview Sections */
.preview-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.preview-section.light {
    background-color: rgba(255, 255, 255, 0.1);
}

.preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--gold);
}

.preview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.preview-text {
    flex: 1;
}

.preview-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.preview-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.preview-image img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* How It Works Page */
.how-it-works {
    padding: 120px 0 80px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    flex: 0 0 30%;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 20px;
}

.step h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Toll Gates Page */
.toll-gates {
    padding: 120px 0 80px;
}

.gate-map {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.gate-map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.gate-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gate-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gate-card:hover {
    transform: translateY(-5px);
    background-color: rgba(212, 175, 55, 0.1);
}

.gate-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Tariffs Page */
.tariffs {
    padding: 120px 0 80px;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    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 var(--gold);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: var(--medium-gray);
}

.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 {
    padding: 120px 0 80px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contact-card {
    flex: 0 0 45%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-card p,
.contact-card a {
    margin-bottom: 15px;
    display: block;
    color: var(--white);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 992px) {
    .preview-content {
        flex-direction: column;
    }
    
    .feature-card,
    .step {
        flex: 0 0 48%;
    }
    
    .contact-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .feature-card,
    .step {
        flex: 0 0 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 30px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .preview-section h2 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}