/* Apple-Style Fonts for Voder Transport Services */

/* Import Inter font (closest to Apple's SF Pro Display) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Root font variables - Apple-style */
:root {
    --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --accent-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Global typography - Apple-style */
body {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.47059;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings with Apple-style typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.1;
    color: #1d1d1f;
    margin-bottom: 0.8em;
    letter-spacing: -0.003em;
}

h1 {
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: -0.022em;
    line-height: 1.07143;
}

h2 {
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: -0.016em;
    line-height: 1.1;
}

h3 {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: -0.011em;
    line-height: 1.125;
}

h4 {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.006em;
    line-height: 1.14286;
}

h5 {
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: -0.003em;
    line-height: 1.2;
}

h6 {
    font-weight: 500;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.25;
}

/* Display headings - Apple-style */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.07143;
    letter-spacing: -0.022em;
}

.display-1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.display-2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.022em;
}

.display-3 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.019em;
}

.display-4 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.016em;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.013em;
}

.display-6 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.011em;
}

/* Navigation - Apple-style */
.navbar-brand h2 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.003em;
}

.navbar-nav .nav-link {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0;
    color: #1d1d1f;
}

.navbar-nav .nav-link:hover {
    color: #06c;
}

/* Buttons - Apple-style */
.btn {
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.9rem;
    border-radius: 980px;
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

.btn-lg {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 980px;
}

.btn-primary {
    background-color: #0071e3;
    border-color: #0071e3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0077ed;
    border-color: #0077ed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background-color: #f5f5f7;
    border-color: #f5f5f7;
    color: #1d1d1f;
}

.btn-secondary:hover {
    background-color: #e8e8ed;
    border-color: #e8e8ed;
    color: #1d1d1f;
}

/* Service cards - Apple-style */
.service-item {
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    background: #ffffff;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-item h4 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.8em;
    letter-spacing: -0.003em;
}

.service-item p {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.47059;
    color: #86868b;
}

/* Pricing - Apple-style */
.price-item {
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.price-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.price-item h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: -0.003em;
}

.price-item .display-5 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: -0.013em;
}

/* Team section - Apple-style */
.team-item {
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.team-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-item h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.003em;
}

.team-item p {
    font-family: var(--body-font);
    font-weight: 400;
    color: #86868b;
}

/* Testimonials - Apple-style */
.testimonial-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    padding: 2rem;
}

.testimonial-item h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.003em;
}

.testimonial-item p {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    line-height: 1.47059;
    color: #1d1d1f;
}

/* Footer - Apple-style */
.footer {
    background: #f5f5f7;
    color: #1d1d1f;
}

.footer h4, .footer h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.003em;
}

.footer p, .footer a {
    font-family: var(--body-font);
    font-weight: 400;
    color: #86868b;
}

.footer a:hover {
    color: #06c;
}

/* Form controls - Apple-style */
.form-control {
    font-family: var(--body-font);
    font-weight: 400;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-control::placeholder {
    font-family: var(--body-font);
    font-weight: 400;
    color: #86868b;
}

/* Section titles - Apple-style */
.text-secondary.text-uppercase {
    font-family: var(--body-font);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #86868b;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Stats and counters - Apple-style */
.counter-up {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: -0.022em;
}

/* Responsive typography - Apple-style */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: -0.019em;
    }
    
    h2 {
        font-size: 2rem;
        letter-spacing: -0.016em;
    }
    
    h3 {
        font-size: 1.5rem;
        letter-spacing: -0.011em;
    }
    
    .display-1 {
        font-size: 3rem;
        letter-spacing: -0.022em;
    }
    
    .display-2 {
        font-size: 2.5rem;
        letter-spacing: -0.019em;
    }
    
    .display-3 {
        font-size: 2rem;
        letter-spacing: -0.016em;
    }
}

/* Apple-style color scheme */
:root {
    --primary-color: #0071e3;
    --secondary-color: #86868b;
    --accent-color: #06c;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --bg-light: #f5f5f7;
    --bg-white: #ffffff;
    --border-color: #d2d2d7;
}

/* Enhanced navbar - Apple-style */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 600;
}

/* Hero section - Apple-style */
.hero-section {
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

.hero-text h1 {
    color: #1d1d1f;
    text-shadow: none;
}

.hero-text p {
    color: #86868b;
    font-size: 1.1rem;
    line-height: 1.47059;
}

/* Service areas - Apple-style */
.service-area-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Contact form - Apple-style */
.contact-form {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: none;
}

/* Apple-style spacing */
.section-title {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: var(--body-font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #86868b;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

/* Call-to-action text - Apple-style */
.cta-text {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: -0.003em;
}

/* Service highlights - Apple-style */
.service-highlight {
    font-family: var(--heading-font);
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.003em;
}

/* Contact information - Apple-style */
.contact-info {
    font-family: var(--body-font);
    font-weight: 400;
    color: #86868b;
}

/* Enhanced readability for Kannada text */
.kannada-text {
    font-family: 'Noto Sans Kannada', var(--body-font);
    line-height: 1.47059;
}

/* Apple-style animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Apple-style focus states */
.btn:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

/* Apple-style selection */
::selection {
    background-color: rgba(0, 113, 227, 0.2);
    color: #1d1d1f;
}

/* Apple-style scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f7;
}

::-webkit-scrollbar-thumb {
    background: #d2d2d7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #86868b;
} 