/* Base Styles */
:root {
    --primary-color: #004d40;
    --secondary-color: #26c6da;
    --accent-color: #ffd600;
    --light-teal: #b2dfdb;
    --white: #ffffff;
    --light-gray: #f7fbfc;
    --dark-gray: #333333;
    --text-color: #212121;
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: var(--text-color);
    background: linear-gradient(#f7fbfc, #e0f2f1);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23b2dfdb' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1em;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(#0097a7, #004d40);
    color: var(--white);
}

.primary-btn:hover {
    background: linear-gradient(#00acc1, #00695c);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    padding: 8px 12px;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-panorama {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-panorama .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    border-radius: var(--border-radius);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    top: 20%;
    right: -30px;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
    z-index: 2;
}

.card-visual {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, #f7fbfc, #e0f2f1);
    border-radius: 4px;
}

.card-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Journey Hub Section */
.journey-hub {
    padding: 80px 0;
    background-color: var(--white);
}

.hub-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    flex: 1;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--light-teal);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Station Section */
.card-station {
    padding: 80px 0;
    background: linear-gradient(rgba(247, 251, 252, 0.9), rgba(224, 242, 241, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23b2dfdb' fill-opacity='0.2' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.card-station .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.station-content {
    flex: 1;
}

.station-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.station-feature {
    position: relative;
    padding-left: 60px;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-teal);
    line-height: 1;
}

.station-visual {
    flex: 1;
    position: relative;
}

.station-image {
    border-radius: var(--border-radius);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.pulse-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.8;
}

.pulse-dot:nth-child(1) {
    top: 30%;
    left: 20%;
    animation: pulse 3s infinite;
}

.pulse-dot:nth-child(2) {
    top: 60%;
    left: 50%;
    animation: pulse 3s infinite 1s;
}

.pulse-dot:nth-child(3) {
    top: 40%;
    left: 70%;
    animation: pulse 3s infinite 2s;
}

/* Route Planner Section */
.route-planner {
    padding: 80px 0;
    background-color: var(--white);
}

.planner-interface {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.planner-visual {
    flex: 1.5;
    position: relative;
}

.map-image {
    border-radius: var(--border-radius);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 77, 64, 0), rgba(0, 77, 64, 0.1));
    pointer-events: none;
}

.planner-controls {
    flex: 1;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.route-form {
    margin-top: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-teal);
    border-radius: var(--border-radius);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.reload-reminder {
    margin-top: 20px;
    font-style: italic;
    color: var(--primary-color);
}

/* Recharge Points Section */
.recharge-points {
    padding: 80px 0;
    background: linear-gradient(rgba(247, 251, 252, 0.9), rgba(224, 242, 241, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23b2dfdb' fill-opacity='0.2' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point-card {
    background-color: var(--white);
    border: 1px solid var(--light-teal);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.point-visual {
    height: 200px;
    overflow: hidden;
}

.point-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.point-card:hover .point-visual img {
    transform: scale(1.05);
}

.point-details {
    padding: 20px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    margin-top: 10px;
}

.link-arrow::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--white);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(#0097a7, #004d40);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-connector {
    flex: 0.5;
    height: 2px;
    background-color: var(--light-teal);
    margin-top: 25px;
    position: relative;
}

.process-connector::before {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.testimonials {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: var(--light-teal);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    text-align: right;
}

/* Recharge Form Section */
.recharge-form {
    padding: 80px 0;
    background: linear-gradient(rgba(247, 251, 252, 0.9), rgba(224, 242, 241, 0.9)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23b2dfdb' fill-opacity='0.2' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.card-reload-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-columns {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-column {
    flex: 1;
}

.payment-options {
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-actions {
    text-align: center;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.hidden {
    display: none;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-columns {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-intro {
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 250px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-map {
    flex: 1;
    position: relative;
}

.map-image {
    border-radius: var(--border-radius);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.location-pin::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 300px;
}

.footer-tagline {
    margin-top: 15px;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
}

.cookie-link {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-panorama .container,
    .card-station .container,
    .planner-interface,
    .contact-columns {
        flex-direction: column;
    }
    
    .station-features {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }
    
    .process-connector::before {
        top: auto;
        right: auto;
        bottom: 0;
        left: -4px;
    }
    
    .testimonials {
        flex-direction: column;
    }
    
    .form-columns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 100;
    }
    
    .main-nav.active ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav.active li {
        margin-bottom: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hub-features {
        flex-direction: column;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .contact-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
} 