/* ==========================================================================
   GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
    --primary: #0b5ed7; /* Trustworthy Blue */
    --primary-dark: #0a4ebd;
    --primary-light: #e6f0ff;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    
    --text-main: #212529;
    --text-muted: #6c757d;
    --border: #dee2e6;
    
    --ff-heading: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 24px;
    --radius-pill: 50rem;
    
    --transition-fast: 0.2s ease;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--ff-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-light-blue { color: #8cb8f9; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background-color: var(--primary);
}

.section-title {
    font-size: 2.25rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--ff-body);
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

/* Micro-animation scale on interactive buttons */
.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 94, 215, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(11, 94, 215, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background-color: var(--whatsapp-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-massive {
    padding: 1.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
}

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 2rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-main);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, var(--primary-light) 0%, var(--white) 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-247 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(11, 94, 215, 0.1);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-number-display {
    display: flex;
    align-items: center;
}

.hero-number-display a {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.float-card {
    position: absolute;
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.float-top-right {
    top: -20px;
    right: -20px;
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-shape svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-box {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.about-img-box img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-box::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: -1rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    box-shadow: var(--shadow);
}

.experience-badge i {
    font-size: 2rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.about-features i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(11, 94, 215, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.why-us-image {
    position: relative;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-color: var(--bg-light);
    border-radius: 50%;
    z-index: 1;
}

.why-us-image img {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
}

.badge-float {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite alternate;
}

.badge-float i {
    color: #FFC107;
    font-size: 2rem;
}

.badge-float strong {
    display: block;
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    line-height: 1;
}

.badge-float span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.fleet-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.fleet-details {
    padding: 2rem;
}

.fleet-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.info-item i {
    color: var(--primary);
}

/* ==========================================================================
   AREAS SECTION
   ========================================================================== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.area-tag {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.area-tag i {
    color: var(--primary);
}

.area-tag:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.area-tag:hover i {
    color: var(--white);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stars {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.review-text {
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--ff-heading);
}

.reviewer-info h4 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.825rem;
    color: #94a3b8;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
    background: linear-gradient(to right, var(--bg-light) 50%, var(--white) 50%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
}

.contact-method-card:not(.no-hover):hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background-color: var(--bg-light);
    position: relative;
    flex-shrink: 0;
}

.icon-box i {
    position: relative;
    z-index: 2;
}

.pulse-blue i { color: var(--primary); }
.pulse-green i { color: var(--whatsapp); }

.pulse-blue::after, .pulse-green::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 1;
}

.pulse-blue::after { background-color: rgba(11, 94, 215, 0.4); }
.pulse-green::after { background-color: rgba(37, 211, 102, 0.4); }

.details span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.details strong {
    font-size: 1.125rem;
    font-family: var(--ff-heading);
}

.contact-cta {
    background-image: url('PHOTO-2022-06-25-02-14-33.jpg'); /* Reuse image or a map bg */
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 78, 189, 0.85); /* Dark Primary overlay */
}

.booking-card {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.booking-card h3 {
    color: var(--primary);
    font-size: 1.75rem;
}

.booking-card p {
    margin-bottom: 2rem;
}

.small-text {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #111827;
    color: #94a3b8;
    padding-top: 5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo .logo-title {
    color: var(--white);
}

.footer-brand p {
    margin-top: 1.5rem;
    max-width: 400px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.designer a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.designer a:hover {
    background-color: var(--primary);
}

/* ==========================================================================
   FIXED WHATSAPP
   ========================================================================== */
.fixed-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

/* ==========================================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Scroll Reveal Classes (Hooked with JS) */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.pointer-animation {
    transition: transform var(--transition);
}
.pointer-animation:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE (MOBILE OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .hero-container, 
    .about-container, 
    .why-us-container, 
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact { background: var(--bg-light); }
    
    .hero-text { margin: 0 auto 2rem; text-align: center; }
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-number-display { justify-content: center; }
    .badge-247 { margin: 0 auto 1.5rem; }
    
    .about-image { grid-row: 2; }
    .why-us-image { grid-row: 2; }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav.nav-open { left: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-link { font-size: 1.25rem; display: block; padding: 1rem; }
    
    .mobile-toggle { display: block; }
    
    .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center;}
    .footer-brand p { margin: 1.5rem auto; }
}

@media (max-width: 576px) {
    .section-padding { padding: 3rem 0; }
    .hero { padding: 6rem 0 3rem; }
    .hero-title { font-size: 2rem; }
    
    .why-grid { grid-template-columns: 1fr; }
    
    .btn { width: 100%; justify-content: center; margin-bottom: 0.5rem; }
    
    .badge-float {
        left: 50%;
        transform: translateX(-50%);
        bottom: -2rem;
        width: max-content;
    }
    
    .fleet-img { height: 250px; }
    
    .contact-method-card { flex-direction: column; text-align: center; gap: 1rem; }
}
