/* --- Global Layout --- */

/* --- Loading Screen --- */
.loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 43, 0.85); /* Semi-transparent navy */
  backdrop-filter: blur(10px); /* Glass effect */
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  width: 100%;
}

.loading-logo {
  width: 140px;
  height: auto;
  margin-bottom: 30px;
  filter: brightness(0) invert(1); /* Logo to white */
  animation: loading-pulse 2s ease-in-out infinite;
}

.loading-bar-container {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: #E63946; /* var(--color-red) */
  border-radius: 2px;
  animation: loading-progress 2s infinite ease-in-out;
}

@keyframes loading-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes loading-progress {
  0% { left: -40%; width: 40%; }
  50% { width: 30%; }
  100% { left: 110%; width: 40%; }
}


/* --- Global Fixed Background & Overlay --- */
.fixed-bg-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -10;
  overflow: hidden;
  /* Prevent jerkiness on mobile scroll */
  pointer-events: none;
}
@media (max-width: 768px) {
  .fixed-bg-container {
    height: 100lvh; /* Use large viewport height to avoid resizing jumps */
  }
}
.fixed-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.fixed-bg-image video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2.8s ease-in-out;
}
.fixed-bg-image video.active {
  opacity: 1;
}
.fixed-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.35);
}

/* --- Global Background & Glass --- */
body { background-color: var(--color-navy); }

/* Remove old glass-section and glass-card transparency */
.glass-section {
  background: var(--color-white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.glass-card {
  background: var(--color-white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none;
}

/* --- Design Tokens & Base --- */
:root {
  --color-navy: #0B132B;       /* 10% Main / Accents */
  --color-red: #E63946;        /* Point Accent */
  --color-blue-light: #D1F5FF; /* 30% Sub Color */
  --color-white: #FFFFFF;      /* 60% Base Color */
  --color-text-main: #0B132B;
  --color-text-sub: #4A5568;
  --font-main: 'Mukta', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --header-height: 90px;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Utilities --- */
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.container-full { width: 100%; padding: 0 60px; } /* Increased padding for wide header */
.section-padding { padding: 120px 0; } 
.section-padding:not(.hero) { background: transparent; }
.main-content-wrapper { 
  background: transparent; 
  position: relative;
  z-index: 1;
  display: flow-root;
}

/* --- Seaside Cafe Layout Components --- */

/* The "Wall" - Solid white container */
.cafe-wall {
  background-color: #FFFFFF !important; /* Force solid white */
  padding: 100px 60px;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.05);
  opacity: 1 !important;
}

.about-image-wrapper {
  width: 100%;
  margin-bottom: 50px;
  background: white;
  padding: 15px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: rotate(-1deg);
  transition: var(--transition);
}

.about-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split Layout: Wall on one side, Window (Ocean) on the other */
.split-section {
  display: flex;
  width: 100%;
  min-height: 80vh;
}

.split-section .wall-side {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section .window-side {
  width: 50%;
  background: transparent;
}

/* Reversed Split */
.split-section.reversed {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .split-section {
    flex-direction: column;
  }
  .split-section .wall-side,
  .split-section .window-side {
    width: 100%;
  }
  .split-section .window-side {
    height: 300px;
  }
}

/* Portfolio Window Frame Cards */
.portfolio-window-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 columns for the window look */
  gap: 100px 60px;
  padding: 100px 40px;
}

@media (max-width: 768px) {
  .portfolio-window-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 60px;
    padding: 60px 20px;
  }
  .frame-card {
    width: 100%;
    max-width: 400px;
  }
  .portfolio-title-block {
    display: block !important;
    margin: 0 auto 40px !important;
    text-align: center;
  }
}

.frame-card {
  background: var(--color-white);
  padding: 20px;
  border: 15px solid var(--color-white); /* Thick frame look */
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.frame-card:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Full Width Shade Banner */
.shade-banner {
  background: var(--color-red);
  color: var(--color-white);
  padding: 60px 40px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 100;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}
.text-center { text-align: center; }
.bg-sub { background-color: var(--color-blue-light); }

/* --- Header --- */
header.site-header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0; left: 0; z-index: 1000;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.45) 100%);
  backdrop-filter: blur(15px);
  border-bottom: none;
  display: flex; align-items: center;
}

.header-inner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%) !important; display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 60px; width: auto; }

.header-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.header-info-link i { font-size: 1.1rem; }

.header-separator {
  width: 1px;
  height: 40px;
  background-color: rgba(11, 19, 43, 0.15);
}

.hamburger-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  margin-left: 10px;
}
.hamburger-btn span { display: block; width: 34px; height: 2px; background-color: var(--color-navy); }

/* --- Hero Sections --- */

.hero { background: transparent !important;
  height: 100vh; min-height: 800px; 
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
  
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px; /* Better mobile proportion */
  }
}
.hero-background { display: none; }



/* Sub Page Hero */
.sub-hero {
  height: 400px;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
}

@media (max-width: 768px) {
  .sub-hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 2000 / 624; /* Precision matching of the actual image ratio */
    background-size: 100% 100%; /* Force image to fill the exact container size */
    background-position: top center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  .sub-hero-overlay {
    height: 100%;
  }
  .sub-hero-content {
    padding: 5px 15px !important; /* Further reduced for the shorter height */
    width: 95%;
  }
  .sub-hero-content::before,
  .sub-hero-content::after {
    width: 20px !important;
    height: 20px !important;
    border-width: 1px !important;
  }
  .sub-hero-title {
    font-size: 1.0rem !important; /* Scaled down to fit the narrow strip */
    margin-bottom: 0 !important;
    letter-spacing: 0.05em !important;
  }
  .sub-hero-subtitle {
    font-size: 0.5rem !important;
    letter-spacing: 0.02em !important;
    margin-top: -2px !important;
  }
}

.sub-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.35); z-index: -1;
}
.sub-hero-content { 
  position: relative; z-index: 10; 
  padding: 40px 60px;
}

/* Corner Frames */
.sub-hero-content::before,
.sub-hero-content::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
}

.sub-hero-content::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.sub-hero-content::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.sub-hero-title { 
  font-family: var(--font-serif);
  font-size: 3.2rem; 
  font-weight: 400; 
  letter-spacing: 0.15em; 
  margin-bottom: 5px; 
}
.sub-hero-subtitle { 
  font-family: 'Mukta', sans-serif;
  font-size: 1.1rem; 
  opacity: 0.9; 
  letter-spacing: 0.25em; 
  text-transform: uppercase; 
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb-container { background-color: var(--color-white); border-bottom: 1px solid rgba(0,0,0,0.05); padding: 20px 0; }
.breadcrumb { font-size: 0.9rem; color: var(--color-text-sub); }
.breadcrumb a { color: var(--color-navy); font-weight: 700; }
.breadcrumb a:hover { color: var(--color-red); }
.breadcrumb span { margin: 0 12px; opacity: 0.4; font-weight: 400; }

/* --- Hero Placeholder --- */




.hero-content { position: relative; z-index: 10; text-align: center; color: var(--color-white); max-width: 1000px; padding: 0 40px; }
.hero-title { font-size: clamp(3.2rem, 8vw, 5.8rem); font-weight: 900; line-height: 1.3; margin-bottom: 30px; letter-spacing: 0.02em; }
.hero-subtitle { font-size: 1.4rem; opacity: 0.9; line-height: 1.6; }

/* --- Sections & Cards --- */
.campaign-banner {
  background: var(--color-red); color: white; padding: 40px; text-align: center;
  margin-top: -80px; position: relative; z-index: 100; border-radius: 20px;
  box-shadow: 0 30px 60px rgba(230, 57, 70, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.campaign-banner:hover {
  transform: translateY(-85px) scale(1.02);
  background-color: #f2505d;
  box-shadow: 0 40px 80px rgba(230, 57, 70, 0.5);
}

.glass-card { background: rgba(255, 255, 255, 0.80) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: var(--color-white); border: 2px solid var(--color-blue-light);
  border-radius: 24px; padding: 50px; transition: var(--transition);
}
.glass-card:hover { transform: translateY(-10px); background: var(--color-blue-light); box-shadow: 0 30px 60px rgba(209, 245, 255, 0.3); }

/* --- Drawer Menu --- */
.drawer-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.5); z-index: 2000;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.drawer-overlay.active { opacity: 1; visibility: visible; }
.drawer-menu {
  position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100%;
  background: var(--color-white); z-index: 2001; padding: 60px 40px;
  display: flex; flex-direction: column; transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -20px 0 50px rgba(0,0,0,0.1);
}
.drawer-menu.active { right: 0; }
.drawer-close { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; color: var(--color-navy); }
.drawer-nav li { margin-bottom: 20px; }
.drawer-nav a { font-size: 1.15rem; font-weight: 700; color: var(--color-navy); }
.drawer-nav a:hover { color: var(--color-red); }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 15px; }
.btn-cta { width: 100%; padding: 18px; border-radius: 12px; text-align: center; font-weight: 700; font-size: 1.1rem; }
.btn-contact { background-color: var(--color-red); color: var(--color-white); }
.btn-phone { background-color: var(--color-navy); color: var(--color-white); }

/* --- Footer --- */
footer { background: var(--color-navy); color: white; padding: 100px 40px 60px; }
footer a:hover { color: var(--color-blue-light); }
footer .logo-footer { height: 80px; width: auto; }

/* --- Image Placeholders --- */
.img-placeholder {
  background-color: var(--color-blue-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-navy); font-size: 0.9rem; font-weight: 700; margin-bottom: 24px;
}

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1.2s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .header-separator, .header-info-link { display: none; } /* Hide phone/email text on small screens, keep hamburger */
  .container-full { padding: 0 20px; }
  .container { padding: 0 20px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .sub-hero-title { font-size: 2.5rem; }
}

/* Footer Custom Layout (Old HP style) */
.site-footer-new {
    background-color: #CFDCE1;
    color: #333;
    padding: 60px 0 40px;
    text-align: center;
}
.footer-logo-center {
    height: 80px;
    display: block; margin: 0 auto 30px;
}
.footer-address {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}
.footer-divider {
    border: none;
    border-top: 1px solid #999;
    margin: 20px auto;
    max-width: 1000px;
}
.footer-nav-horizontal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0;
    font-size: 0.9rem;
}
.footer-nav-horizontal a {
    color: #333;
    text-decoration: none;
    transition: var(--transition);
}
.footer-nav-horizontal a:hover {
    color: var(--color-red);
}
.footer-copyright {
    font-size: 0.8rem;
    color: #777;
    margin-top: 30px;
}

/* Page Top Button */
.page-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    z-index: 100;
    transition: var(--transition);
    opacity: 0.8;
}
.page-top-btn:hover {
    opacity: 1;
    background: var(--color-red);
}

/* Logo Size Adjustments */
.logo img {
    height: 90px; /* Increased from 60px */
}
.site-header {
    height: auto;
    padding: 10px 0;
}
.header-inner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%) !important;
    height: 110px; /* Adjust inner height to accommodate larger logo */
}

.footer-logo-center {
    height: 90px; /* Increased from 80px */
    margin-bottom: 25px;
}

/* Global Contact CTA Section (above footer) */
.global-contact-cta {
    background-color: transparent;
    padding: 80px 0;
}
.contact-nav-global {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid #ddd;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-nav-item-global {
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
}
.contact-nav-label-global {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}
.contact-nav-btn-global {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-red);
    color: white;
    padding: 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}
.contact-nav-btn-global:hover {
    background: var(--color-navy);
}

/* Phone button specific override */
.contact-nav-btn-global[href^="tel:"] {
    background: var(--color-navy);
}
.contact-nav-btn-global[href^="tel:"]:hover {
    background: var(--color-red);
}

.header-info-link:hover {
    color: var(--color-red) !important;
}
.header-info-link:hover i {
    color: var(--color-red) !important;
}

/* "Piku" Micro-interaction for all interactive elements */
a, button, .service-card, .portfolio-card, .glass-card, .contact-nav-btn-global {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Specific elements that should "jump" on hover */
.btn-cta:hover, 
.header-info-link:hover, 
.nav-links a:hover, 

.service-card:hover, 
.portfolio-card:hover, 
.contact-nav-btn-global:hover, 
.page-top-btn:hover,
.footer-nav-horizontal a:hover {
    transform: translateY(-5px);
}

/* Subtle scaling for some elements */
.btn-cta:active {
    transform: translateY(-2px) scale(0.98);
}




/* Shared Portfolio Grid */
.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.portfolio-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.portfolio-img {
    height: 200px;
    background: #eee;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.portfolio-link {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--color-red);
    display: flex;
    align-items: center;
    gap: 8px;
}


/* --- Refined Mobile Adjustments (User Feedback) --- */

@media (max-width: 768px) {
    /* Header & Logo - Ultra Slim */
    .header-inner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%) !important;
        height: 60px !important; /* Slimmer for better icon centering */
    }
    .logo img {
        height: 40px !important; /* Balanced with header height */
    }
    .header-controls {
        gap: 15px; /* Tighter gap for small screens */
    }
    .header-separator {
        display: none;
    }
    /* Mobile-only Phone Icon (Hide text, show icon) */
    .header-info-link {
        display: flex !important;
        font-size: 0 !important; /* Hide the text part */
        padding: 5px;
    }
    .header-info-link i {
        font-size: 1.4rem; /* Prominent phone icon */
    }
    .hamburger-btn {
        width: 36px;
        height: 36px;
        margin-left: 5px;
    }

    /* Global Typography Scaling for Mobile (Proportional to Hero) */
    h2 { font-size: 1.9rem !important; line-height: 1.3 !important; margin-bottom: 20px !important; }
    h3 { font-size: 1.25rem !important; }
    p, li { font-size: 0.9rem !important; line-height: 1.6 !important; }
    
    .section-padding {
        padding: 60px 0; /* More compact spacing */
    }
    
    /* Hero Typography */
    .hero-title {
        font-size: 2.0rem !important;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 0.85rem !important; /* Slightly more reduced to match global P */
        line-height: 1.5;
    }
    .sub-hero-content {
        padding: 15px 30px;
    }
    .sub-hero-content::before,
    .sub-hero-content::after {
        width: 30px;
        height: 30px;
    }
    .sub-hero-title {
        font-size: 1.4rem !important;
        letter-spacing: 0.1em;
    }
    .sub-hero-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 0.15em;
    }

    /* Subdue Campaign Banner on Mobile */
    .campaign-banner {
        margin-top: -20px !important; /* Less overlap with hero */
        padding: 20px !important;
        border-radius: 12px !important;
    }
    .campaign-banner h2 {
        font-size: 1.2rem !important; /* Smaller header */
        margin-bottom: 5px !important;
    }
    .campaign-banner p {
        font-size: 0.8rem !important; /* Smaller body text */
        line-height: 1.4 !important;
    }

    /* Drawer Menu (Fit in one screen) */
    .drawer-menu {
        padding: 60px 30px 40px; /* Reduced top padding */
    }
    .drawer-nav li {
        margin-bottom: 12px; /* Much tighter gap */
    }
    .drawer-nav a {
        font-size: 1.1rem; /* Smaller font to fit items */
    }
    .drawer-cta {
        margin-top: 30px;
        gap: 10px;
    }
    .btn-cta {
        padding: 15px;
        font-size: 1rem;
    }
    .drawer-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    /* Footer (Hide horizontal menu) */
    .footer-nav-horizontal {
        display: none !important;
    }
    .footer-logo-center {
        height: 50px !important;
        margin-bottom: 15px;
    }
    .footer-address {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    .footer-divider {
        display: none; /* Simplify footer on mobile */
    }
    .footer-copyright {
        margin-top: 10px;
    }
    .glass-card {
        padding: 25px !important; /* Reduced for mobile */
        border-radius: 16px;
    }
    .service-grid-mobile {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 30px !important;
    }
    .service-image-mobile {
        order: 1 !important; /* Ensure image is always top on mobile */
    }
    .service-text-mobile {
        order: 2 !important;
    }
}
