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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #FFD700;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #FFD700;
}

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

/* Hero */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-icon {
    font-size: 5rem;
    color: #000;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-image {
    text-align: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out;
    background: transparent;
}

.taxi-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.taxi-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-icon i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #000;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4rem;
    color: #000;
    font-weight: 300;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 100px 0;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    color: #000;
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #FFD700;
    border-radius: 3px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

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

.service-card p {
    color: #666;
}

/* About */
.about {
    background: #fff;
}

.about > .container > p {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature {
    padding: 40px 30px;
    background: #fff;
    border: 3px solid #FFD700;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
    border-color: #000;
}

.feature-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 25px;
    display: inline-block;
}

.feature-icon i {
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.feature:hover .feature-icon i {
    transform: scale(1.15) rotate(5deg);
    color: #000;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.feature p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.info-section {
    margin: 60px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 5px solid #FFD700;
}

.info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
}

.info-section h3 i {
    margin-right: 15px;
    color: #FFD700;
    font-size: 1.6rem;
}

.info-section ul {
    list-style: none;
    color: #555;
    padding-left: 0;
}

.info-section ul li {
    margin-bottom: 18px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-section ul li i {
    position: absolute;
    left: 0;
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.2rem;
    top: 3px;
}

.info-section p {
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.reservation-note {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.google-form-container {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: visible;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.google-form-container iframe {
    width: 100%;
    height: 1200px;
    border: none;
    overflow: hidden;
}


/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid #FFD700;
    background: #000;
    color: #FFD700;
}

.footer p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .taxi-image {
        transform: none;
    }

    .taxi-image:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

    .logo-img {
        height: 50px;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-icon {
        font-size: 3.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .taxi-image {
        max-width: 100%;
        transform: none;
    }

    h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-section {
        padding: 30px 20px;
    }

    .google-form-container iframe {
        min-height: 600px;
    }
}

