:root {
    --primary: #1a252f;
    --accent: #f39c12;
    --white: #ffffff;
    --gray: #f4f7f6;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: var(--gray);
    color: #333;
}

.pricing-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.price-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* நடுவில் உள்ள கார்டை (Kista) உயர்த்தி காட்ட */
.price-card.featured {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #666;
}

.price-card li {
    margin-bottom: 10px;
}

.direction-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* கார்டுகளை நடுவில் வைக்கும் */
    gap: 20px;
    margin-bottom: 40px;
}

.price-card h4 {
    margin: 10px 0;
    font-size: 20px;
}

.price-card {
    flex: 0 1 calc(33.333% - 40px);
    /* ஒரு வரிசைக்கு சரியாக 3 கார்டுகள் */
    min-width: 280px;
    /* மொபைலில் கார்டுகள் உடையாமல் இருக்க */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

/* மொபைல் போன்களில் ஒரு வரிசைக்கு ஒரு கார்டு மட்டும் தெரிய */
@media (max-width: 900px) {
    .price-card {
        flex: 0 1 100%;
    }
}

.btn-book {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #ffd700;
    color: #000;
}

/* Lang Switcher */
.lang-switcher {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lang-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    /* உங்கள் தேவைக்கேற்ப மாற்றிக்கொள்ளுங்கள் */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lang-btn:hover {
    transform: scale(0.85);
    /* 15% சுருங்கும் (Zoom-out) */
    opacity: 0.8;
    /* லேசாக மங்கலாகத் தெரிய (தேவையெனில்) */
}

/* Header & Opaque Logo */
header {
    background: var(--primary);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 15px;
    margin-top: 15px;
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.company-logo {
    max-width: 160px;
    height: auto;
    display: block;
    opacity: 1;

}

.container {
    max-width: 1000px;
    margin: -30px auto 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Fleet */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;

}

.card.highlight {
    border: 2px solid var(--accent);
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    /* கார்டை 5px மேலே உயர்த்தும் */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* நிழலை அதிகப்படுத்தும் */
}

/* Form & Correct Textarea Size */
.enquiry-section {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
#notesField {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
}

#notesField {
    min-height: 120px;
    resize: vertical;
    display: block;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Addons */
.addons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

@media (min-width: 600px) {
    .addons {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact & Footer Center */
.contact-box {
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.wa-link {
    color: #25d366 !important;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.btn-submit {
    background: var(--accent);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn-call {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}