:root {
    /* Color Palette */
    --color-bg: #0f172a;
    /* Midnight Blue */
    --color-bg-light: #1e293b;
    /* Lighter Blue */
    --color-primary: #f59e0b;
    /* Premium Gold/Amber */
    --color-primary-hover: #d97706;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-surface: rgba(30, 41, 59, 0.7);
    --color-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-primary:disabled {
    background-color: #475569;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 100%;
    margin-top: 1rem;
}

.btn-outline:hover:not(:disabled) {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 130px;
    min-height: 130px;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px; /* Capsule positioned ~30px from left edge */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* White Capsule Logo in Navbar */
.navbar .logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 110px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 15px; /* ~15px padding around logo */
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.18);
    box-sizing: border-box;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.navbar .logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.28);
}

.navbar .brand-logo {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 90px;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.brand-text {
    display: none; /* Logo graphic already includes text */
}

/* Footer Logo Styling */
.footer-brand .logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px 16px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: var(--transition);
}

.footer-brand .brand-logo {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--color-bg);
    position: relative;
    display: flex;
    align-items: center;
    padding: 170px 5% 60px;
    overflow: hidden;
    /* Prevent pseudo-elements from spilling out */
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    /* Removes the white background of the car images */
    opacity: 1;
    /* Increased from 0.85 for better clarity */
    filter: brightness(1.1);
    /* Slightly brighten the cars */
}

.hero::before {
    left: 0;
    width: 50%;
    /* Skoda Superb */
    background: url('images/skoda_uploaded.jpg') center/contain no-repeat;
}

.hero::after {
    right: 0;
    width: 60%;
    /* Increased width for PC */
    background: url('images/vito_uploaded_new.png') right center/contain no-repeat;
    /* Aligned to right */
}

/* Specific PC Enhancements */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--color-primary);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info-block a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-info-block i {
    color: var(--color-primary);
}

.hero-contact-rep {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 22px;
}

.rep-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 42px;
    line-height: 1;
}

.rep-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rep-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.rep-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.3;
}

.hero-contact {
    margin-bottom: 2rem;
    margin-top: 0;
}

.hero-contact a {
    color: #fff;
    font-size: 1.1rem;
}

.hero-contact i {
    font-size: 1.3rem;
}

.hero-contact a:hover {
    color: var(--color-primary);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.feature-item i {
    color: var(--color-primary);
}

/* Booking Widget */
.booking-widget {
    background: var(--color-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.booking-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label i {
    color: var(--color-primary);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    flex: 1;
}

input,
select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 23, 42, 0.9);
}

/* Style date/time picker icons to white */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.price-estimate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.price-label {
    font-weight: 500;
    color: var(--color-text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--color-text-muted);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-summary {
    background: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
}

.summary-item strong {
    color: #fff;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.payment-btn:not(.outline) {
    background: #fff;
    color: #0f172a;
}

.payment-btn:not(.outline):hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.payment-btn.outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.payment-btn.outline:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.payment-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.payment-status.hidden {
    display: none;
}

.payment-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Footer */
footer {
    background: #0b1120;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-muted);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */


/* =========================================================
   OUR FLEET SECTION
   ========================================================= */
.fleet {
    padding: 100px 5%;
    background-color: var(--color-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: var(--shadow-soft);
}

.fleet-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 2rem;
}

.fleet-class {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.fleet-model {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.fleet-features i {
    color: var(--color-primary);
    font-size: 1.2rem;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--color-bg) 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    color: var(--color-text-muted);
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin: 2.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-subtitle i {
    color: var(--color-primary);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.about-list li i {
    color: var(--color-primary);
}

.chauffeur-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.chauffeur-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chauffeur-grid span i {
    color: var(--color-primary);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image {
    width: 100%;
    margin-bottom: -50px;
    /* Overlap effect */
    position: relative;
    z-index: 1;
}

.about-experience {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    position: relative;
    z-index: 2;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 3rem;
}

.about-experience h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-experience h3 span {
    color: var(--color-primary);
}




/* =========================================================
   INTERNAL PAGE SPECIFIC STYLES (e.g. Airport Transfers)
   ========================================================= */

.page-hero {
    padding: 160px 5% 80px;
    background: linear-gradient(135deg, var(--color-bg) 0%, #000 100%);
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero h1 span {
    color: var(--color-primary);
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Features Section */
.features-section {
    padding: 80px 5%;
    background-color: var(--color-bg-light);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--color-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--color-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-soft);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Routes Section */
.routes-section {
    padding: 80px 5%;
    background-color: var(--color-bg);
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.route-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.route-card:hover {
    border-color: var(--color-primary);
    background: rgba(245, 158, 11, 0.05);
}

.route-card i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 5%;
    background-color: var(--color-bg-light);
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: dashed 2px var(--color-primary);
    z-index: 1;
    opacity: 0.5;
}

.timeline-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #000 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-primary);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}


/* =========================================================
   CONTACT PAGE STYLES
   ========================================================= */
.contact-options {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.contact-card i {
    font-size: 3.5rem;
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #fff;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-btn {
    width: 100%;
    text-decoration: none;
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.contact-btn.whatsapp:hover {
    background-color: #128C7E;
}

.contact-btn.email {
    background-color: var(--color-primary);
    color: #fff;
}

.contact-btn.email:hover {
    background-color: var(--color-primary-hover);
}

.page-hero {
    padding: 180px 5% 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: var(--color-primary);
}

.page-hero p {
    color: var(--color-text-muted);
    font-size: 1.25rem;
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonials {
    padding: 100px 5%;
    background-color: var(--color-bg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-soft);
}

.testi-rating {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
}

.testi-text {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.testi-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testi-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =========================================================
   RESPONSIVE NAVBAR & LOGO CAPSULE BREAKPOINTS
   ========================================================= */

/* Tablet Breakpoint */
@media (max-width: 992px) {
    .navbar {
        height: 110px;
        min-height: 110px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .navbar .logo {
        width: 150px;
        height: 90px;
        border-radius: 16px;
        padding: 7.5px 12.5px;
    }

    .navbar .brand-logo {
        max-width: 125px;
        max-height: 75px;
    }

    .hero {
        padding-top: 140px;
    }

    .page-hero {
        padding-top: 150px;
    }

    .hero-contact-rep {
        margin-top: 24px;
        margin-bottom: 18px;
        gap: 12px;
    }

    .rep-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        font-size: 36px;
    }

    .rep-name {
        font-size: 24px;
    }

    .rep-title {
        font-size: 16px;
    }
}

/* Phone Breakpoint */
@media (max-width: 576px) {
    .navbar {
        height: 95px;
        min-height: 95px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .navbar .logo {
        width: 120px;
        height: 75px;
        border-radius: 14px;
        padding: 7.5px 10px;
    }

    .navbar .brand-logo {
        max-width: 100px;
        max-height: 60px;
    }

    .hero {
        padding-top: 115px;
    }

    .page-hero {
        padding-top: 125px;
    }

    .hero-contact-rep {
        margin-top: 20px;
        margin-bottom: 16px;
        gap: 10px;
    }

    .rep-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 32px;
    }

    .rep-name {
        font-size: 21px;
        white-space: normal;
    }

    .rep-title {
        font-size: 15px;
    }
}