/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables - Ported from Tailwind Config */
:root {
    /* Colors */
    --background: hsl(40, 33%, 98%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --primary: hsl(38, 92%, 50%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(222, 47%, 11%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(40, 20%, 94%);
    --muted-foreground: hsl(222, 20%, 40%);
    --accent: hsl(38, 92%, 95%);
    --accent-foreground: hsl(38, 92%, 35%);
    --border: hsl(40, 20%, 88%);

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, hsl(38, 92%, 50%), hsl(45, 93%, 58%));
    --gradient-dark: linear-gradient(135deg, hsl(222, 47%, 11%), hsl(222, 47%, 20%));

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px rgba(26, 32, 53, 0.1);
    --shadow-card: 0 10px 40px -10px rgba(26, 32, 53, 0.12);
    --shadow-hover: 0 20px 50px -15px rgba(255, 153, 0, 0.25);

    /* Fonts */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Border Radius */
    --radius: 0.75rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Container */
.container-custom {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Section Padding */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Text Gradient */
.text-gradient {
    background-image: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Card Styles */
.card-hover {
    transition: all 0.3s ease-out;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary-foreground);
    background-image: var(--gradient-warm);
    box-shadow: var(--shadow-soft);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--primary-foreground);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--secondary);
    background-color: transparent;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    text-decoration: none;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: hsla(40, 33%, 98%, 0.8);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Utility Classes */
.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.bg-card {
    background-color: var(--card);
    color: var(--card-foreground);
}

.bg-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-primary {
    color: var(--primary);
}

.border-border {
    border-color: var(--border);
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Image */
img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(38, 92%, 45%);
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* WhatsApp Button Animation */
@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-whatsapp {
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    animation: whatsappPulse 0.6s ease-in-out;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp:hover i {
    animation: whatsappPulse 0.6s ease-in-out;
}

/* Explore Fleet Button Animation */
@keyframes exploreFleetPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-explore-fleet {
    transition: all 0.3s ease;
}

.btn-explore-fleet:hover {
    animation: exploreFleetPulse 0.6s ease-in-out;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Call Now Button Animation */
@keyframes callNowRing {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-15deg) scale(1.1);
    }

    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

.btn-call-now {
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    animation: callNowRing 0.6s ease-in-out;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.btn-call-now:hover i {
    animation: callNowRing 0.6s ease-in-out;
}

/* Call to Enquire Button Animation */
@keyframes callEnquirePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-call-enquire {
    transition: all 0.3s ease;
}

.btn-call-enquire:hover {
    animation: callEnquirePulse 0.6s ease-in-out;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-call-enquire:hover i {
    animation: callEnquirePulse 0.6s ease-in-out;
}