/* 
 * Professional Landing Page CSS
 * Unique design for rental/taxi booking
 * Not copying Ola/Uber - completely original
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pro-primary: #2e7d32;
    --pro-primary-dark: #1b5e20;
    --pro-secondary: #0277bd;
    --pro-accent: #ff6f00;
    --pro-dark: #1a1a1a;
    --pro-light: #f8f9fa;
    --pro-white: #ffffff;
    --pro-gray: #6c757d;
    --pro-border: #dee2e6;
}

body.professional-landing {
    font-family: 'Inter', sans-serif;
    color: var(--pro-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */

.pro-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--pro-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.pro-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--pro-primary);
    font-family: 'Poppins', sans-serif;
}

.pro-nav-links {
    display: flex;
    gap: 30px;
}

.pro-nav-links a {
    text-decoration: none;
    color: var(--pro-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.pro-nav-links a:hover {
    color: var(--pro-primary);
}

.pro-nav-actions {
    display: flex;
    gap: 15px;
}

.pro-btn-outline {
    padding: 10px 24px;
    border: 2px solid var(--pro-primary);
    color: var(--pro-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.pro-btn-outline:hover {
    background: var(--pro-primary);
    color: var(--pro-white);
}

.pro-btn-primary {
    padding: 10px 24px;
    background: var(--pro-primary);
    color: var(--pro-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.pro-btn-primary:hover {
    background: var(--pro-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT-SCREEN HERO
═══════════════════════════════════════════════════════════════ */

.pro-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin-top: 70px;
}

.pro-hero-left {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pro-hero-content {
    max-width: 600px;
}

.pro-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--pro-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-hero-title {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pro-highlight {
    color: var(--pro-primary);
    position: relative;
}

.pro-hero-subtitle {
    font-size: 18px;
    color: var(--pro-gray);
    margin-bottom: 40px;
}

/* BOOKING CARD */

.pro-booking-card {
    background: var(--pro-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pro-booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--pro-border);
}

.pro-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--pro-gray);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.pro-tab.active {
    color: var(--pro-primary);
    border-bottom-color: var(--pro-primary);
}

.pro-form-group {
    margin-bottom: 20px;
}

.pro-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.pro-form-group input,
.pro-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--pro-border);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.pro-form-group input:focus,
.pro-form-group select:focus {
    outline: none;
    border-color: var(--pro-primary);
}

.pro-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pro-btn-book {
    width: 100%;
    padding: 16px;
    background: var(--pro-primary);
    color: var(--pro-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-btn-book:hover {
    background: var(--pro-primary-dark);
    transform: translateY(-2px);
}

/* LIVE STATS */

.pro-live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--pro-border);
}

.pro-stat {
    text-align: center;
}

.pro-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--pro-primary);
    font-family: 'Poppins', sans-serif;
}

.pro-stat-label {
    display: block;
    font-size: 12px;
    color: var(--pro-gray);
    margin-top: 5px;
}

/* HERO RIGHT - MAP */

.pro-hero-right {
    position: relative;
    background: #e0e0e0;
}

.pro-hero-map {
    width: 100%;
    height: 100%;
}

.pro-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pro-car-animation {
    animation: carMove 3s ease-in-out infinite;
}

@keyframes carMove {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */

.pro-section {
    padding: 80px 0;
}

.pro-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pro-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.pro-section-header p {
    font-size: 18px;
    color: var(--pro-gray);
}

.pro-bg-light {
    background: var(--pro-light);
}

.pro-bg-dark {
    background: var(--pro-dark);
}

.pro-header-light h2,
.pro-header-light p {
    color: var(--pro-white);
}

/* ═══════════════════════════════════════════════════════════════
   PRICING CALCULATOR
═══════════════════════════════════════════════════════════════ */

.pro-calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--pro-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pro-calc-group {
    margin-bottom: 25px;
}

.pro-calc-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.pro-calc-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: var(--pro-border);
    outline: none;
}

.pro-calc-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--pro-primary);
    cursor: pointer;
}

.pro-calc-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--pro-border);
    border-radius: 8px;
    font-size: 15px;
}

.pro-calc-result {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-fare-breakdown {
    width: 100%;
}

.pro-fare-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--pro-border);
}

.pro-fare-total {
    font-size: 20px;
    font-weight: 800;
    color: var(--pro-primary);
    border-bottom: none;
    padding-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   FLEET CAROUSEL
═══════════════════════════════════════════════════════════════ */

.pro-fleet-carousel {
    position: relative;
}

.pro-fleet-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pro-fleet-card {
    background: var(--pro-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pro-fleet-card:hover {
    transform: translateY(-10px);
}

.pro-fleet-img {
    height: 200px;
    overflow: hidden;
}

.pro-fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-fleet-info {
    padding: 20px;
}

.pro-fleet-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pro-fleet-features {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.pro-fleet-features span {
    font-size: 13px;
    padding: 5px 10px;
    background: var(--pro-light);
    border-radius: 5px;
}

.pro-fleet-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pro-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--pro-primary);
}

.pro-btn-select {
    padding: 8px 20px;
    background: var(--pro-primary);
    color: var(--pro-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-btn-select:hover {
    background: var(--pro-primary-dark);
}

.pro-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--pro-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.pro-carousel-btn:hover {
    background: var(--pro-primary);
    color: var(--pro-white);
}

.pro-prev {
    left: -25px;
}

.pro-next {
    right: -25px;
}

/* ═══════════════════════════════════════════════════════════════
   CITY SELECTOR
═══════════════════════════════════════════════════════════════ */

.pro-city-selector {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.pro-city-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pro-city-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-city-item {
    padding: 20px;
    background: var(--pro-white);
    border-radius: 12px;
    border: 2px solid var(--pro-border);
    cursor: pointer;
    transition: all 0.3s;
}

.pro-city-item:hover,
.pro-city-item.active {
    border-color: var(--pro-primary);
    background: rgba(46, 125, 50, 0.05);
}

.pro-city-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pro-city-item p {
    font-size: 14px;
    color: var(--pro-gray);
}

/* Continue in next part... */

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */

.pro-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pro-testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.pro-testimonial-video {
    position: relative;
    height: 200px;
}

.pro-testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-play-btn:hover {
    background: var(--pro-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.pro-testimonial-content {
    padding: 25px;
    color: var(--pro-white);
}

.pro-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.pro-testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pro-customer strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.pro-customer span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════════════════ */

.pro-comparison-table {
    overflow-x: auto;
}

.pro-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pro-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pro-comparison-table th,
.pro-comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--pro-border);
}

.pro-comparison-table th {
    background: var(--pro-light);
    font-weight: 700;
    font-size: 18px;
}

.pro-comparison-table th.pro-popular {
    background: var(--pro-primary);
    color: var(--pro-white);
    position: relative;
}

.pro-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   SAFETY GRID
═══════════════════════════════════════════════════════════════ */

.pro-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pro-safety-card {
    background: var(--pro-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pro-safety-card:hover {
    transform: translateY(-5px);
}

.pro-safety-icon {
    width: 70px;
    height: 70px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.pro-safety-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pro-safety-card p {
    color: var(--pro-gray);
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════
   CORPORATE SECTION
═══════════════════════════════════════════════════════════════ */

.pro-corporate {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--pro-white);
}

.pro-corporate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pro-corporate-left h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pro-corporate-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.pro-corporate-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.pro-corp-feature {
    display: flex;
    gap: 20px;
}

.pro-corp-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.pro-corp-feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.pro-corp-feature p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.pro-btn-corporate {
    padding: 16px 32px;
    background: var(--pro-primary);
    color: var(--pro-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-btn-corporate:hover {
    background: var(--pro-primary-dark);
    transform: translateY(-2px);
}

.pro-corporate-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pro-corporate-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.pro-corporate-form input,
.pro-corporate-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--pro-white);
    font-size: 15px;
}

.pro-corporate-form input::placeholder,
.pro-corporate-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   APP DOWNLOAD
═══════════════════════════════════════════════════════════════ */

.pro-app-download {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.pro-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pro-app-left h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pro-app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.pro-app-feature {
    font-size: 16px;
    font-weight: 500;
}

.pro-app-buttons {
    display: flex;
    gap: 15px;
}

.pro-app-btn img {
    height: 50px;
}

.pro-app-right {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.pro-qr-section {
    text-align: center;
}

.pro-qr-code {
    background: var(--pro-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.pro-qr-code img {
    display: block;
}

.pro-phone-mockup img {
    max-width: 250px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.pro-footer {
    background: var(--pro-dark);
    color: var(--pro-white);
    padding: 60px 0 30px;
}

.pro-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.pro-footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pro-footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.pro-footer-col a:hover {
    color: var(--pro-white);
}

.pro-social {
    display: flex;
    gap: 15px;
}

.pro-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .pro-hero-split {
        grid-template-columns: 1fr;
    }
    
    .pro-hero-right {
        min-height: 400px;
    }
    
    .pro-hero-left {
        padding: 40px 20px;
    }
    
    .pro-fleet-track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pro-calc-wrapper,
    .pro-city-selector,
    .pro-corporate-content,
    .pro-app-content {
        grid-template-columns: 1fr;
    }
    
    .pro-testimonial-grid,
    .pro-safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pro-comparison-table {
        overflow-x: scroll;
    }
}

@media (max-width: 768px) {
    .pro-nav-links {
        display: none;
    }
    
    .pro-nav-actions {
        gap: 10px;
    }
    
    .pro-btn-outline {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .pro-hero-title {
        font-size: 36px;
    }
    
    .pro-hero-subtitle {
        font-size: 16px;
    }
    
    .pro-booking-card {
        padding: 20px;
    }
    
    .pro-form-row {
        grid-template-columns: 1fr;
    }
    
    .pro-section {
        padding: 60px 0;
    }
    
    .pro-section-header h2 {
        font-size: 32px;
    }
    
    .pro-fleet-track,
    .pro-testimonial-grid,
    .pro-safety-grid,
    .pro-footer-content {
        grid-template-columns: 1fr;
    }
    
    .pro-live-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pro-calc-wrapper {
        padding: 25px;
    }
    
    .pro-corporate-features {
        gap: 20px;
    }
    
    .pro-app-features {
        grid-template-columns: 1fr;
    }
    
    .pro-app-right {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pro-logo-text {
        font-size: 18px;
    }
    
    .pro-hero-title {
        font-size: 28px;
    }
    
    .pro-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .pro-booking-card {
        padding: 15px;
    }
    
    .pro-btn-book {
        padding: 14px;
        font-size: 15px;
    }
    
    .pro-section-header h2 {
        font-size: 28px;
    }
    
    .pro-section-header p {
        font-size: 16px;
    }
    
    .pro-stat-value {
        font-size: 24px;
    }
    
    .pro-corporate-form {
        padding: 25px;
    }
}


/* Fleet Gradient Backgrounds */
.pro-fleet-economy {
    background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
}

.pro-fleet-comfort {
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
}

.pro-fleet-premium {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
}

.pro-fleet-suv {
    background: linear-gradient(135deg, #ede7f6 0%, #b39ddb 100%);
}

.pro-fleet-overlay {
    font-size: 24px;
    font-weight: 800;
    color: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Testimonial Gradient Backgrounds */
.pro-testimonial-bg-1 {
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
}

.pro-testimonial-bg-2 {
    background: linear-gradient(135deg, #0277bd 0%, #4fc3f7 100%);
}

.pro-testimonial-bg-3 {
    background: linear-gradient(135deg, #ff6f00 0%, #ffa726 100%);
}

.pro-testimonial-icon {
    font-size: 80px;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Phone Mockup */
.pro-phone-screen {
    width: 250px;
    height: 500px;
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 8px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pro-phone-header {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pro-phone-content {
    font-size: 80px;
}


/* Current Location Button */
.pro-location-input {
    position: relative;
    display: flex;
    gap: 10px;
}

.pro-location-input input {
    flex: 1;
}

.pro-location-btn {
    padding: 12px 16px;
    background: var(--pro-primary);
    border: 2px solid var(--pro-primary);
    color: var(--pro-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-location-btn:hover {
    background: var(--pro-primary-dark);
    transform: scale(1.05);
}

.pro-location-btn:active {
    transform: scale(0.95);
}

.pro-location-btn.loading {
    background: var(--pro-gray);
    cursor: wait;
}

.pro-location-icon {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pro-location-btn.loading .pro-location-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
