/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #0066CC;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #0066CC;
}

nav ul li a.active {
    color: #0066CC;
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066CC;
}

/* Hero Section */
.hero {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
    text-align: left;
}

.hero-content p {
    font-size: 20px;
    color: #333333;
    margin: 0 0 30px;
    text-align: left;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-frame.small {
    max-width: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.image-frame.small img {
    height: 150px;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 10px;
}

.btn.primary {
    background-color: #0066CC;
    color: #FFFFFF;
}

.btn.primary:hover {
    background-color: #0055b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn.secondary {
    background-color: #FF6B00;
    color: #FFFFFF;
}

.btn.secondary:hover {
    background-color: #e65e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #e6f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.card p {
    color: #333333;
    font-size: 16px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.benefits h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 25px;
    border-left: 4px solid #0066CC;
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.benefit-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #333333;
    font-size: 16px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0066CC;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    margin-bottom: 15px;
}

.step p {
    color: #333333;
    font-size: 16px;
    margin-bottom: 20px;
}

.step-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.technology h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid #FF6B00;
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.feature p {
    color: #333333;
    font-size: 16px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.map-container {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #e6f0ff;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gate-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FF6B00;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.gate-marker:hover {
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 10;
}

.gate-marker:hover .gate-info {
    display: block;
}

.gate-info {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 20;
}

.gate-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
}

.gate-info p {
    font-size: 14px;
    color: #333333;
}

/* Gates List */
.gates-list {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.gates-list h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.gates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gate-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #0066CC;
}

.gate-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.gate-card p {
    color: #333333;
    font-size: 16px;
    margin-bottom: 5px;
}

/* Tariff Tables */
.tariff-tables {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tariff-tables h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.tariff-info {
    text-align: center;
    margin-bottom: 40px;
}

.tariff-info p {
    font-size: 18px;
    color: #333333;
}

.tariff-table {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tariff-table h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background-color: #0066CC;
    color: #FFFFFF;
    padding: 15px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #e6f0ff;
    color: #333333;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.payment-methods h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 50px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-option {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid #FF6B00;
}

.payment-option h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.payment-option p {
    color: #333333;
    font-size: 16px;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 30px;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.detail-item p {
    color: #333333;
    font-size: 16px;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Location */
.map-location {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.map-location h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 30px;
}

.map-location .map-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-location .map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 5px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B00;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.copyright p {
    color: #999999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .features h2,
    .benefits h2,
    .process h2,
    .technology h2,
    .map-section h2,
    .gates-list h2,
    .tariff-tables h2,
    .payment-methods h2,
    .contact-content h2,
    .map-location h2 {
        font-size: 32px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1,
    .hero-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .features,
    .benefits,
    .process,
    .technology,
    .map-section,
    .gates-list,
    .tariff-tables,
    .payment-methods,
    .contact-content,
    .map-location {
        padding: 60px 0;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .features h2,
    .benefits h2,
    .process h2,
    .technology h2,
    .map-section h2,
    .gates-list h2,
    .tariff-tables h2,
    .payment-methods h2,
    .contact-content h2,
    .map-location h2 {
        font-size: 28px;
    }
    
    table {
        font-size: 14px;
    }
    
    table th,
    table td {
        padding: 10px;
    }
    
    .image-frame {
        transform: perspective(1000px) rotateY(0deg);
    }
}