/*
Theme Name: Antalya VIP Car
Theme URI: http://example.com/antalyavipcar
Author: Jules
Author URI: http://example.com
Description: A custom WordPress theme for Antalya VIP Car Transfer.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: antalyavipcar
Tags: responsive, translation-ready, custom-colors
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text .highlight {
    color: #d4af37;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hero-feature .icon {
    color: #d4af37;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #e94560, #d4af37);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
}

.hero-image {
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: floatLogo 3s ease-in-out infinite;
}

.hero-image {
    perspective: 1000px;
}

.site-logo-video {
    border: 5px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    width: 300px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px) rotateY(0deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
    }
    25% {
        transform: translateY(-10px) rotateY(90deg) scale(1.02);
        filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.8)) drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    }
    50% {
        transform: translateY(-20px) rotateY(180deg) scale(1.05);
        filter: drop-shadow(0 0 25px rgba(255, 69, 0, 1)) drop-shadow(0 0 40px rgba(255, 165, 0, 0.8));
    }
    75% {
        transform: translateY(-10px) rotateY(270deg) scale(1.02);
        filter: drop-shadow(0 0 20px rgba(233, 69, 96, 0.8)) drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    }
    100% {
        transform: translateY(0px) rotateY(360deg) scale(1);
        filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
    }
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Fleet Section */
.fleet-section {
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fleet-image {
    position: relative;
    height: 250px;
    background: #f0f0f0;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e94560, #d4af37);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.fleet-info {
    padding: 25px;
}

.fleet-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.fleet-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.fleet-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.fleet-feature .icon {
    color: #d4af37;
    font-size: 14px;
}

.fleet-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Why Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.booking-section .section-title h2,
.booking-section .section-title p {
    color: white;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.booking-form .booking-table {
    width: 100%;
    border-collapse: collapse;
}
.booking-form .booking-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}
.booking-form .booking-table tr:last-child td {
    border-bottom: none;
}
.booking-form .booking-table td:first-child {
    width: 35%;
    font-weight: 600;
    color: #333;
}
.booking-form .passenger-label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.booking-section span.wpcf7-not-valid-tip,
.booking-section .wpcf7-response-output {
    color: #fff;
}
.booking-form .booking-table textarea.form-control {
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group:last-child {
    grid-column: 1 / -1;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    min-width: 250px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e94560, #d4af37);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.contact-details p {
    color: #666;
    font-size: 14px;
}

.contact-details a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #d4af37;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-widget p,
.footer-widget li {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #1a1a2e;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #d4af37);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.author-info h4 {
    margin: 0 0 2px 0;
    font-size: 14px;
    color: #333;
}

.author-info p {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #999;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffc107;
    font-size: 12px;
}

/* Gallery Section */
.customer-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #e0e0e0;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Demo Banner */
.demo-banner {
    background: linear-gradient(135deg, #e94560, #d4af37);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-image {
        text-align: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .customer-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 28px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .customer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map iframe {
        height: 300px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 22px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .customer-gallery {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 300px;
    }
    .booking-form {
        padding: 20px;
    }
    .fleet-features {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button */
/* --- City Highlights --- */
.city-highlights .city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.city-card {
    background: #12162b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.city-image {
    width: 100%;
    padding-top: 62%;
    background-size: cover;
    background-position: center;
}

.city-content {
    padding: 20px 22px 26px;
    color: #fff;
}

.city-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #d4af37;
}

.city-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.98rem;
}

@media (max-width: 640px) {
    .city-content {
        padding: 18px;
    }

    .city-content h3 {
        font-size: 1.15rem;
    }
}
