/*
Theme Name: Ikaros Tours Child Theme
Theme URI: https://ikarostours.ch
Description: Professional Clean Design for Ikaros Tours.
Author: SCempnefsis
Version: 1.5.2
*/

/* =====================================================
   1. VARIABLES
   ===================================================== */
:root {
  /* Brand Colors */
  --ik-color-primary: #1d4ed8;     /* Royal Blue */
  --ik-color-secondary: #0f172a;   /* Navy Blue / Dark Text */
  --ik-color-accent: #3b82f6;      /* Brighter Blue */
  
  --ik-color-text-main: #334155;   /* Slate 700 */
  --ik-color-text-light: #f8fafc;  /* White-ish */
  
  --ik-bg-white: #ffffff;
  --ik-bg-light: #f1f5f9;          /* Light Gray/Blueish */
  --ik-bg-gradient: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);

  /* Fonts */
  --ik-font-main: "Poppins", sans-serif;
  --ik-font-head: "Playfair Display", serif;
}

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

/* =====================================================
   2. UTILITIES & ANIMATIONS
   ===================================================== */
.ik-main { position: relative; }
.ik-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.ik-section { padding: 80px 0; position: relative; }

/* Animations */
.ik-animate { opacity: 0; transform: translateY(20px); transition: 0.6s ease-out; }
.ik-animate.ik-visible { opacity: 1; transform: translateY(0); }
.ik-delay-1 { transition-delay: 0.1s; }
.ik-delay-2 { transition-delay: 0.2s; }
.ik-delay-3 { transition-delay: 0.3s; }

/* Typography Helpers */
.ik-kicker {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ik-color-primary); margin-bottom: 10px; display: block;
}
.ik-title-xl {
  font-family: var(--ik-font-head); font-size: clamp(36px, 5vw, 52px); line-height: 1.2;
  color: #fff; margin-bottom: 20px;
}
.ik-title-lg {
  font-family: var(--ik-font-head); font-size: clamp(28px, 4vw, 38px);
  color: var(--ik-color-secondary); margin-bottom: 15px;
}
.ik-text-md { font-size: 1.05rem; color: #64748b; line-height: 1.7; }
.ik-text-center { text-align: center; }

/* Buttons */
.ik-btn-primary {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 30px; border-radius: 50px;
  background: linear-gradient(135deg, var(--ik-color-primary), var(--ik-color-accent));
  color: #fff; font-weight: 600; text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none;
}
.ik-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4); }

.ik-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 28px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(15,23,42,0.6);
  color: #fff; font-weight: 500; text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.ik-btn-secondary:hover { background: rgba(15,23,42,0.8); border-color: #fff; }

/* =====================================================
   3. HEADER STYLES
   ===================================================== */
.ik-header {
  position: sticky; top: 0; z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}
.ik-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.ik-header-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.ik-header-logo-img { display: block; max-height: 50px; height: auto; width: auto; }

/* Desktop Nav */
.ik-header-nav { flex: 1 1 auto; display: none; justify-content: flex-end; }
.ik-header-menu { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.ik-header-menu > li > a {
  display: inline-flex; align-items: center;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; color: #0f172a; padding: 6px 0; position: relative;
}
.ik-header-menu > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  border-radius: 999px; background: linear-gradient(90deg, #1d4ed8, #6366f1);
  transform: scaleX(0); transform-origin: center; transition: transform 0.18s ease-out;
}
.ik-header-menu > li > a:hover::after { transform: scaleX(1); }

/* Header CTA */
.ik-header-cta { display: none; }
.ik-header-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid rgba(37,99,235,0.45);
  background: radial-gradient(circle at 0 0, rgba(37,99,235,0.9), rgba(79,70,229,1));
  box-shadow: 0 10px 26px rgba(15,23,42,0.22), 0 0 0 1px rgba(15,23,42,0.16);
  color: #f9fafb; font-size: 0.86rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; text-decoration: none;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
}
.ik-header-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.3), 0 0 0 1px rgba(59,130,246,0.9);
  background: radial-gradient(circle at 0 0, rgba(30,64,175,1), rgba(79,70,229,1));
}

/* Burger Menu */
.ik-header-burger {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; width: 40px; height: 36px; border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7); background: #ffffff; cursor: pointer; padding: 0;
}
.ik-burger-line {
  width: 18px; height: 2px; border-radius: 999px; background: #0f172a;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out, background 0.18s ease-out;
}

/* Mobile Drawer */
.ik-header-drawer {
  position: fixed; inset: 0 0 auto 0; top: 0; height: 0; overflow: hidden;
  background: rgba(15,23,42,0.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(15,23,42,0.9);
  transition: height 0.22s ease-out; z-index: 35;
}
.ik-header-drawer-nav { max-width: 1200px; margin: 70px auto 16px; padding: 0 16px 18px; }
.ik-header-drawer-menu { list-style: none; margin: 0; padding: 0; }
.ik-header-drawer-menu > li + li { margin-top: 4px; }
.ik-header-drawer-menu > li > a {
  display: block; padding: 10px 4px; font-size: 0.96rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: #e5e7eb;
  text-decoration: none; border-bottom: 1px solid rgba(31,41,55,0.9);
}
.ik-header-drawer-menu > li > a:hover { background: rgba(15,23,42,0.9); }
.ik-header-drawer-cta {
  display: inline-flex; margin-top: 14px; padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(96,165,250,0.9);
  background: radial-gradient(circle at 0 0, rgba(37,99,235,0.9), rgba(79,70,229,1));
  color: #f9fafb; font-size: 0.88rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; text-decoration: none;
}

/* Header Open State */
body.ik-header-open { overflow: hidden; }
body.ik-header-open .ik-header-drawer { height: 100vh; }
body.ik-header-open .ik-header-burger { border-color: rgba(239,68,68,0.7); background: rgba(127,29,29,0.95); }
body.ik-header-open .ik-burger-line { background: #fee2e2; }
body.ik-header-open .ik-burger-line:nth-child(1) { transform: translateY(3px) rotate(45deg); }
body.ik-header-open .ik-burger-line:nth-child(2) { opacity: 0; }
body.ik-header-open .ik-burger-line:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

@media (min-width: 900px){
  .ik-header-inner { padding: 16px 20px; }
  .ik-header-nav, .ik-header-cta { display: flex; }
  .ik-header-cta { display: block; }
  .ik-header-burger, .ik-header-drawer { display: none; }
  .ik-header-logo-img { max-height: 58px; }
}

/* =====================================================
   4. HERO SECTION (Front Page)
   ===================================================== */
.ik-hero {
  position: relative; 
  min-height: 85vh; 
  display: flex; 
  align-items: center;
  background: #020617; 
  color: #fff; 
  padding: 100px 0;
  overflow: hidden;
}

/* HERO SLIDER */
.ik-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0; 
}

.ik-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; 
    z-index: 0;
}

.ik-slide.active {
    opacity: 1;
    animation: ikZoom 7s linear forwards; 
    z-index: 1;
}

@keyframes ikZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } 
}

/* Hero Overlay */
.ik-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2,6,23,0.95), rgba(2,6,23,0.3));
    z-index: 1;
}

/* Skew Clip */
.ik-hero::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: var(--ik-bg-light); clip-path: polygon(0 100%, 100% 100%, 100% 0); z-index: 3;
}

.ik-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 50px; }
@media(min-width: 900px) { .ik-hero-inner { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }

.ik-hero-text { max-width: 600px; }
.ik-hero-sub { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 25px; }
.ik-hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; }
.ik-hero-meta { margin-top: 30px; display: flex; gap: 15px; font-size: 0.85rem; color: #94a3b8; }

/* HERO CARD */
.ik-hero-card {
  position: relative;
  transform: skewX(-10deg);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px; padding: 30px 50px;
  color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.3); margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ik-hero-card:hover { transform: skewX(-10deg) translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.ik-hero-card > * { transform: skewX(10deg); }

.ik-hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 10px; }
.ik-hero-card-title { font-weight: 600; }
.ik-hero-chip { background: #22c55e; color: #000; font-size: 0.75rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.ik-hero-card-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; color: #e2e8f0; }
.ik-hero-card-price { margin-top: 15px; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,0.2); display: flex; justify-content: space-between; align-items: baseline; }
.ik-hero-card-price strong { font-size: 1.3rem; color: #fff; }

/* =====================================================
   5. SERVICES (TOPOGRAPHIC PATTERN FIXED)
   ===================================================== */
.ik-section-services { 
    background-color: #f8fafc; /* Ανοιχτό γκρι φόντο */
    
    /* Topographic Map Pattern - Base64 Encoded (No Upload Needed) */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2394a3b8' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    
    padding-bottom: 100px; 
}

/* Services Grid Layout */
.ik-services-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 50px; }
@media(min-width: 900px) { .ik-services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Cards Style */
.ik-service-card {
  position: relative; 
  background: #fff; 
  transform: skewX(-10deg);
  border-radius: 24px; 
  padding: 40px 50px;
  box-shadow: 0 15px 35px rgba(148, 163, 184, 0.15);
  border: 1px solid #fff; 
  transition: transform 0.3s ease;
}
.ik-service-card:hover { transform: skewX(-10deg) translateY(-10px); z-index: 2; }
.ik-service-inner { transform: skewX(10deg); }

/* Icons Wrapper */
.ik-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #eff6ff; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ik-color-primary);
    transition: transform 0.3s ease;
}
.ik-service-card:hover .ik-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--ik-color-primary);
    color: #fff;
}

/* Typography */
.ik-service-label { font-size: 0.75rem; font-weight: 700; color: var(--ik-color-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
.ik-service-title { font-size: 1.2rem; font-weight: 700; color: var(--ik-color-secondary); margin-bottom: 12px; }
.ik-service-text { font-size: 0.95rem; color: #64748b; line-height: 1.6; }

/* =====================================================
   6. FLEET
   ===================================================== */
.ik-section-fleet { background: #fff; }
.ik-fleet-inner { display: grid; gap: 40px; }
@media(min-width: 900px) { .ik-fleet-inner { grid-template-columns: 1.2fr 0.8fr; align-items: center; } }

.ik-fleet-panel {
  transform: skewX(-5deg); background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px; padding: 40px 50px; color: #fff;
  box-shadow: 0 20px 40px rgba(15,23,42,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ik-fleet-panel:hover { transform: skewX(-5deg) translateY(-10px); box-shadow: 0 30px 60px rgba(15,23,42,0.3); }

.ik-fleet-panel-inner { transform: skewX(5deg); }
.ik-fleet-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.ik-fleet-text { color: #cbd5e1; margin-bottom: 20px; }
.ik-fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ik-fleet-tag { padding: 6px 14px; border-radius: 50px; background: rgba(255,255,255,0.1); font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.2); }

/* =====================================================
   7. PROCESS
   ===================================================== */
.ik-section-how { background: #fff; }
.ik-how-layout { display: grid; gap: 40px; }
@media(min-width: 900px) { .ik-how-layout { grid-template-columns: 1fr 1fr; align-items: center; } }

.ik-how-steps { position: relative; padding-left: 40px; }
.ik-how-line { position: absolute; left: 15px; top: 10px; bottom: 10px; width: 2px; background: #e2e8f0; }
.ik-how-step { position: relative; margin-bottom: 30px; }
.ik-how-badge { 
  position: absolute; left: -40px; top: 0; width: 32px; height: 32px; 
  background: var(--ik-color-primary); color: #fff; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 0 0 4px #fff;
}
.ik-how-title { font-weight: 700; color: var(--ik-color-secondary); margin-bottom: 5px; }

/* =====================================================
   8. REVIEWS
   ===================================================== */
.ik-section-reviews { background: var(--ik-bg-light); }
.ik-reviews-grid { display: grid; gap: 30px; margin-top: 40px; }
@media(min-width: 900px) { .ik-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.ik-review-card {
  background: #fff; transform: skewX(-10deg); border-radius: 20px;
  padding: 30px 50px; box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.ik-review-card:hover { transform: skewX(-10deg) translateY(-5px); }

.ik-review-card > * { transform: skewX(10deg); }
.ik-review-rating { color: var(--ik-color-primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }
.ik-review-text { font-style: italic; color: #475569; margin-bottom: 15px; }
.ik-review-author { font-weight: 700; color: var(--ik-color-secondary); font-size: 0.9rem; }

/* =====================================================
   9. CTA & FOOTER
   ===================================================== */
.ik-section-cta { background: var(--ik-color-secondary); color: #fff; text-align: center; }
.ik-section-cta .ik-title-lg { color: #fff; }
.ik-section-cta .ik-text-md { color: #cbd5e1; }

.ik-footer { background: #fff; border-top: 1px solid #e2e8f0; padding: 30px 0; }
.ik-footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.ik-footer-logo { height: 24px; width: auto; display: block; }
.ik-footer-right { color: #64748b; font-size: 0.9rem; font-weight: 500; }

/* =====================================================
   10. PAGE: GET A QUOTE (FIXED)
   ===================================================== */
.ik-page-hero {
  background-color: #0f172a !important; 
  padding: 100px 0 60px;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.ik-page-hero h1, 
.ik-page-hero .ik-title-xl {
    color: #ffffff !important;
}

.ik-page-hero p, 
.ik-page-hero .ik-text-light {
    color: #cbd5e1 !important;
    font-size: 1.15rem;
}

.ik-quote-section { 
    background: var(--ik-bg-light); 
    padding: 60px 0 100px;
}

.ik-quote-layout { 
    display: grid; 
    gap: 50px; 
}
@media(min-width: 900px) { 
    .ik-quote-layout { 
        grid-template-columns: 1fr 1fr; 
        align-items: start; 
    } 
}

/* Info Column */
.ik-check-list { list-style: none; padding: 0; margin: 30px 0; }
.ik-check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; color: #475569; }
.ik-check-list li::before {
  content: "✔"; position: absolute; left: 0;
  color: var(--ik-color-primary); font-weight: bold;
}

.ik-quote-contact-card {
  background: #fff; border-left: 4px solid var(--ik-color-primary);
  padding: 20px; margin-top: 30px; border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.ik-quote-contact-card h3 { margin: 0 0 5px; font-size: 1.1rem; }
.ik-phone-link {
  display: block; font-size: 1.2rem; font-weight: 700;
  color: var(--ik-color-primary); text-decoration: none; margin-top: 5px;
}

/* Form Card */
.ik-form-card {
  background: #ffffff; 
  transform: skewX(-5deg);
  border-radius: 20px; 
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15); 
  border: 1px solid #ffffff;
}
.ik-form-card > * { transform: skewX(5deg); }

/* Form Styling */
.ik-mock-form, .wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
.ik-form-row { display: grid; gap: 20px; }
@media(min-width: 600px) { .ik-form-row { grid-template-columns: 1fr 1fr; } }

.ik-form-group { display: flex; flex-direction: column; gap: 8px; }
.ik-form-group label { font-size: 0.9rem; font-weight: 600; color: var(--ik-color-secondary); }
.ik-form-group input, .ik-form-group select,
.wpcf7-form-control-wrap input, .wpcf7-form-control-wrap select {
  width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 8px;
  background: #f8fafc; font-family: inherit; font-size: 1rem; transition: 0.2s; box-sizing: border-box;
}
.ik-form-group input:focus, .wpcf7-form-control-wrap input:focus {
  outline: none; border-color: var(--ik-color-primary);
  background: #fff; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* =====================================================
   11. UNIVERSAL UTILITY
   ===================================================== */
.ik-box-skew {
    position: relative;
    background: #fff;
    transform: skewX(-10deg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}
.ik-box-skew > * { transform: skewX(10deg); }
.ik-box-skew:hover { transform: skewX(-10deg) translateY(-5px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15); }

/* =====================================================
   12. RESPONSIVE RESET (GLOBAL)
   ===================================================== */
@media (max-width: 768px) {
  .ik-hero { padding-top: 40px; text-align: center; }
  .ik-hero-ctas, .ik-hero-meta { justify-content: center; }
  
  /* Reset Skews on Mobile */
  .ik-hero-card, .ik-service-card, .ik-review-card, .ik-form-card, .ik-fleet-panel, .ik-box-skew {
    transform: none; padding: 30px; margin: 0; border-radius: 20px;
  }
  
  /* Reset Hover effects on mobile */
  .ik-hero-card:hover, .ik-service-card:hover, .ik-review-card:hover, .ik-fleet-panel:hover, .ik-box-skew:hover {
     transform: none;
  }

  .ik-hero-card > *, .ik-service-inner, .ik-review-card > *, .ik-form-card > *, .ik-fleet-panel-inner, .ik-box-skew > * { transform: none; }
  
  .ik-footer-inner { flex-direction: column; gap: 15px; }
}