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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll reveal animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    color: white;
    border-color: #A8A8A8;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #707070, #888888);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(112, 112, 112, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 10px rgba(112, 112, 112, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #A8A8A8;
    border-color: #A8A8A8;
}

.btn-secondary:hover {
    background: #A8A8A8;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: #A8A8A8;
    border-color: #A8A8A8;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #A8A8A8;
    color: white;
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    gap: 10px;
}

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

.nav-logo h2 {
    color: #A8A8A8;
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.logo-img {
    height: 150px;
    width: 170px;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #A8A8A8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A8A8A8;
    transition: width 0.3s ease;
}

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

.nav-toggle-checkbox {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #A8A8A8;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

/* Language Dropdown */
.nav-lang {
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    background: transparent;
    border: 2px solid #A8A8A8;
    color: #A8A8A8;
    padding: 3px 10px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: #A8A8A8;
    color: white;
}

.language-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 100px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 10px 0 0 0;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    margin: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.lang-option:hover {
    background: #D0D0D0;
    color: #A8A8A8;
    border-left-color: #A8A8A8;
    padding-left: 25px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

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

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.dropdown-link:hover {
    background: #D0D0D0;
    color: #A8A8A8;
    border-left-color: #A8A8A8;
    padding-left: 25px;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 0.5rem 0;
    border: none;
}

/* Hero Section - Base Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    opacity: 1;
    visibility: visible;
    transition: none;
    animation: fadeIn 0.3s ease-in;
}

/* Default Layout - Plain Background (Two Column) */
.hero[data-layout="plain"] {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Video Layout - Single Column */
.hero[data-layout="video"] {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Image Layout - Single Column */
.hero[data-layout="image"] {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    display: none;
}

/* Hide video in plain layout */
.hero[data-layout="plain"] .hero-video {
    display: none;
}

/* Show video in video layout */
.hero[data-layout="video"] .hero-video {
    display: block;
}

/* Hide video in image layout */
.hero[data-layout="image"] .hero-video {
    display: none;
}

/* Image Background */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    display: none;
}

/* Hide image in plain layout */
.hero[data-layout="plain"] .hero-image {
    display: none;
}

/* Hide image in video layout */
.hero[data-layout="video"] .hero-image {
    display: none;
}

/* Show image in image layout */
.hero[data-layout="image"] .hero-image {
    display: block;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

/* Hide overlay in plain layout */
.hero[data-layout="plain"] .hero-overlay {
    display: none;
}

/* Show overlay in video/image layout */
.hero[data-layout="video"] .hero-overlay,
.hero[data-layout="image"] .hero-overlay {
    display: block;
}

/* Hero Content - Base Styles */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Plain Layout - Side by Side */
.hero[data-layout="plain"] .hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
    text-align: left;
    align-items: flex-start;
}

/* Video/Image Layout - Centered */
.hero[data-layout="video"] .hero-content,
.hero[data-layout="image"] .hero-content {
    flex: none;
    max-width: 800px;
    width: 100%;
    padding: 0;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Hero Visual - Base Styles */
.hero-visual {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Plain Layout - Show Visual */
.hero[data-layout="plain"] .hero-visual {
    flex: 1;
    display: flex;
}

/* Video/Image Layout - Hide Visual */
.hero[data-layout="video"] .hero-visual,
.hero[data-layout="image"] .hero-visual {
    display: none;
}

.hero-placeholder {
    text-align: center;
    color: #A8A8A8;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    padding-top: 3rem;
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: white;
}

.hero-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #A8A8A8;
    text-align: center;
}

/* Tiny House Image Container */
.hero-tinyhouse-image {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-tinyhouse-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-tinyhouse-image img:hover {
    transform: scale(1.05);
}

/* Hero Content Text - Base Styles */
.hero-content h1 {
    margin: 0 0 1.5rem 0;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

/* Plain Layout - Dark Text */
.hero[data-layout="plain"] .hero-content h1 {
    color: #333;
    text-shadow: none;
}

.hero[data-layout="plain"] .hero-content p {
    color: #666;
    text-shadow: none;
}

/* Video/Image Layout - White Text */
.hero[data-layout="video"] .hero-content h1,
.hero[data-layout="image"] .hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero[data-layout="video"] .hero-content p,
.hero[data-layout="image"] .hero-content p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Hero Buttons - Base Styles */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0;
}

/* Plain Layout - Left Aligned Buttons */
.hero[data-layout="plain"] .hero-buttons {
    justify-content: flex-start;
    align-items: center;
}

/* Video/Image Layout - Centered Buttons */
.hero[data-layout="video"] .hero-buttons,
.hero[data-layout="image"] .hero-buttons {
    justify-content: center;
    align-items: center;
}

/* Video/Image Layout - Button Colors */
.hero[data-layout="video"] .btn,
.hero[data-layout="image"] .btn {
    background: #A8A8A8;
    color: white;
    border: 2px solid #A8A8A8;
    text-shadow: none;
}

.hero[data-layout="video"] .btn:hover,
.hero[data-layout="image"] .btn:hover {
    background: #888888;
    border-color: #888888;
    color: white;
}

.hero[data-layout="video"] .btn-secondary,
.hero[data-layout="image"] .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero[data-layout="video"] .btn-secondary:hover,
.hero[data-layout="image"] .btn-secondary:hover {
    background: white;
    color: #A8A8A8;
    border-color: white;
}


/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Popular Models Section */
.popular-models {
    padding: 100px 0;
    background: #f8f9fa;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.model-image {
    height: 200px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-placeholder {
    color: white;
    font-size: 3rem;
}

.model-content {
    padding: 2rem;
}

.model-content h3 {
    color: #A8A8A8;
    margin-bottom: 1rem;
}

.model-card .model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.model-card .model-features span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.model-card .model-features i {
    margin-right: 0.5rem;
    color: #A8A8A8;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: white;
    color: #A8A8A8;
    border-color: white;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #A8A8A8;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.easter-egg {
    font-size: 0.8rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    cursor: default;
  }
  
  .easter-egg:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .easter-egg .fa-heart {
    color: #ff3366;
    animation: heartBeat 1.5s ease infinite;
  }
  
  @keyframes heartBeat {
    0% {
      transform: scale(1);
    }
    14% {
      transform: scale(1.3);
    }
    28% {
      transform: scale(1);
    }
    42% {
      transform: scale(1.3);
    }
    70% {
      transform: scale(1);
    }
  }
  

.footer-section a:hover {
    color: #A8A8A8;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: #A8A8A8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-section .social-links a:hover {
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #A8A8A8;
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* ============================================
   MOBILE RESPONSIVE DESIGN - COMPLETE REDESIGN
   ============================================ */
@media (max-width: 768px) {
    /* Body - Prevent horizontal scroll */
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Container - Centered and optimized */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* All sections - Full width and centered */
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Navigation - Mobile Menu */
    .nav-container {
        height: 110px;
        padding: 0 15px;
        position: relative;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .nav-logo {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .logo-img {
        height: 120px;
        max-width: 300px;
        width: auto;
        object-fit: contain;
    }

    .nav-toggle {
        order: 1;
        display: flex !important;
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        margin: 0;
        margin-right: 10px;
        z-index: 1001;
        cursor: pointer;
        background: transparent;
        border: none;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .nav-toggle span {
        width: 24px;
        height: 3px;
        background: #333;
        display: block;
        transition: all 0.3s ease;
        margin: 3px 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-lang {
        order: 3;
        flex: 0 0 auto;
        margin-left: 10px;
        margin-right: 0;
    }

    .language-toggle {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: 44px;
        min-width: 60px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        width: 100%;
        height: calc(100vh - 110px);
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: flex !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 18px 20px;
        text-align: left;
        font-size: 1rem;
        min-height: 44px;
        touch-action: manipulation;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background: #f8f9fa;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.active {
        display: block;
        max-height: 500px;
    }

    .dropdown-link {
        display: block;
        width: 100%;
        padding: 15px 40px;
        text-align: left;
        border-left: none;
        border-bottom: 1px solid #e9ecef;
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Hero Section - Full Screen Mobile */
    .hero {
        min-height: calc(100vh - 110px);
        height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
        padding: 0 20px;
        margin: 0;
        margin-top: 110px; /* Header height */
        flex-direction: column !important;
        text-align: center;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Ensure video/image covers full screen on mobile */
    .hero-video,
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-video video,
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 3;
        position: relative;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin: 0 0 1.5rem 0;
        text-align: center;
        width: 100%;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2rem 0;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .hero-buttons {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 50px;
        text-align: center;
        touch-action: manipulation;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide visual on mobile for video/image layouts */
    .hero-visual {
        display: none !important;
    }

    .hero-placeholder,
    .hero-tinyhouse-image {
        display: none !important;
    }

    /* Ensure white text on video/image background */
    .hero[data-layout="video"] .hero-content h1,
    .hero[data-layout="image"] .hero-content h1 {
        color: white !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    }

    .hero[data-layout="video"] .hero-content p,
    .hero[data-layout="image"] .hero-content p {
        color: white !important;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8) !important;
    }

    /* Plain layout - also full screen on mobile */
    .hero[data-layout="plain"] {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }

    .hero[data-layout="plain"] .hero-content h1 {
        color: #333 !important;
        text-shadow: none !important;
    }

    .hero[data-layout="plain"] .hero-content p {
        color: #666 !important;
        text-shadow: none !important;
    }

    /* Typography - Mobile */
    h1 {
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h4 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    /* Buttons - Mobile Optimized */
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 50px;
        text-align: center;
        touch-action: manipulation;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        max-width: 100%;
    }

    .btn-large {
        padding: 18px 28px;
        font-size: 1.1rem;
        min-height: 54px;
    }

    .btn-small {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 46px;
    }

    /* Features Section */
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* Popular Models */
    .popular-models {
        padding: 60px 0;
    }

    .models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
    }

    .model-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .model-image {
        height: 250px;
    }

    .model-content {
        padding: 1.5rem;
    }

    .model-card .model-features {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .model-card .model-features span {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }

    /* Process Section */
    .process {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .process-step {
        padding: 1.5rem;
    }

    /* CTA Section */
    .cta {
        padding: 60px 20px;
        text-align: center;
    }

    .cta-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        width: 100%;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
    }

    .footer-section .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Page Header */
    .page-header {
        padding: 130px 20px 60px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Body - Extra Small Mobile */
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Container - Extra Small Mobile */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* All sections - Full width */
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Navigation - Extra Small */
    .nav-container {
        height: 100px;
        padding: 0 12px;
    }

    .nav-logo {
        margin: 0 auto;
    }

    .logo-img {
        height: 100px;
        max-width: 250px;
        width: auto;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
        margin-right: 8px;
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        top: 100px;
        height: calc(100vh - 100px);
    }

    .nav-lang {
        margin-left: 8px;
    }

    .language-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-height: 40px;
        min-width: 55px;
    }

    .nav-link {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .dropdown-link {
        padding: 14px 35px;
        font-size: 0.9rem;
    }

    /* Hero - Extra Small - Full Screen */
    .hero {
        min-height: calc(100vh - 100px);
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        padding: 0 15px;
        margin: 0;
        margin-top: 100px; /* Header height for 480px */
    }
    
    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .hero-visual,
    .hero-placeholder,
    .hero-tinyhouse-image {
        display: none !important;
    }

    /* Typography - Extra Small */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    /* Buttons - Extra Small */
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 52px;
    }

    .btn-small {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Features - Extra Small */
    .features {
        padding: 50px 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    /* Models - Extra Small */
    .popular-models {
        padding: 50px 0;
    }

    .models-grid {
        gap: 1.5rem;
    }

    .model-image {
        height: 220px;
    }

    .model-content {
        padding: 1.25rem;
    }

    /* Process - Extra Small */
    .process {
        padding: 50px 0;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.25rem;
    }

    /* CTA - Extra Small */
    .cta {
        padding: 50px 15px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    /* Footer - Extra Small */
    .footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        gap: 2rem;
    }

    /* Page Header - Extra Small */
    .page-header {
        padding: 110px 15px 50px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    /* Touch Targets - Minimum 44px */
    .nav-link,
    .dropdown-link,
    .filter-btn,
    .thumbnail,
    .main-image-scroll-btn,
    .zoom-btn,
    .thumbnail-scroll-btn,
    .gallery-btn,
    .social-link,
    .info-item {
        min-height: 44px;
        touch-action: manipulation;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Smooth transitions for better UX */
.feature-card,
.model-card,
.process-step {
    transition: all 0.3s ease;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #A8A8A8;
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* About Story */
.about-story {
    padding: 100px 0;
    background: white;
}

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

.story-text h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #A8A8A8;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #A8A8A8;
    border: 2px dashed #A8A8A8;
}

.story-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.story-placeholder p {
    color: #666;
    font-size: 1.1rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    color: #A8A8A8;
    margin-bottom: 1.5rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
}

.team-member h4 {
    color: #A8A8A8;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Manufacturing */
.manufacturing {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.manufacturing-text h3 {
    color: #A8A8A8;
    margin-bottom: 2rem;
    text-align: left;
}

.quality-list {
    list-style: none;
    margin-top: 2rem;
}

.quality-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quality-list i {
    color: #A8A8A8;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.manufacturing-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.manufacturing-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.manufacturing-placeholder p {
    color: white;
    font-size: 1.1rem;
}

/* Certificates */
.certificates {
    padding: 100px 0;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.certificate {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.certificate h4 {
    color: #A8A8A8;
    margin-bottom: 0.5rem;
}

/* Stats */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    color: white;
}

.stats h2 {
    color: white;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Model Filter */
.model-filter {
    padding: 50px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #A8A8A8;
    background: transparent;
    color: #A8A8A8;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.filter-btn.active,
.filter-btn:hover {
    background: #A8A8A8;
    color: white;
}

/* Models Section */
.models-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.models-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.model-card-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.model-card-detailed:hover {
    transform: translateY(-5px);
}

.model-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    width: 500px;
}

.model-main-image {
    width: 500px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.model-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.main-image-scroll-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.main-image-scroll-btn.prev {
    left: 8px;
}

.main-image-scroll-btn.next {
    right: 8px;
}

.zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(168, 168, 168, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(136, 136, 136, 1);
    transform: scale(1.1);
}

.model-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.model-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.model-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.model-image-placeholder p {
    color: white;
    font-size: 1.1rem;
}

.model-thumbnails-wrapper {
    position: relative;
    width: 100%;
}

.model-thumbnails {
    display: flex;
    gap: 0.4rem;
    overflow-x: hidden;
    padding: 0 22px;
    scroll-behavior: smooth;
}

.thumbnail-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(168, 168, 168, 0.9);
    color: white;
    border: none;
    width: 20px;
    height: 50px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.thumbnail-scroll-btn:hover {
    background: rgba(168, 168, 168, 1);
}

.thumbnail-scroll-btn.prev {
    left: 0;
}

.thumbnail-scroll-btn.next {
    right: 0;
}

.thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail.active {
    border-color: #A8A8A8;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.model-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.model-header h3 {
    color: #A8A8A8;
    margin: 0;
    font-size: 1.8rem;
}

.model-price {
    display: none;
}

.model-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.model-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.spec-item i {
    color: #A8A8A8;
    font-size: 1rem;
    width: 18px;
}

.spec-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.model-card-detailed .model-features {
    margin-top: 1rem;
    padding-left: 5rem;
}

.model-card-detailed .model-features h4 {
    color: #A8A8A8;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.model-card-detailed .model-features ul {
    list-style: none;
    padding: 0;
}

.model-card-detailed .model-features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: #666;
    font-size: 0.9rem;
}

.model-card-detailed .model-features li::before {
    content: '✓';
    color: #A8A8A8;
    font-weight: bold;
    width: 20px;
}

.model-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 8rem;
    justify-content: flex-start;
}

/* Model Lightbox */
.model-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
}

.model-lightbox.active {
    display: flex;
}

.model-lightbox-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.model-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.3s ease;
}

.model-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Customization Section */
.customization {
    padding: 100px 0;
    background: #f8f9fa;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.custom-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-option:hover {
    transform: translateY(-10px);
}

.custom-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.custom-option h4 {
    color: #A8A8A8;
    margin-bottom: 1rem;
}

/* ============================================
   MODELS PAGE - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .models-page {
        padding: 60px 0;
    }

    .models-page .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .filter-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-width: 100px;
        min-height: 48px;
        touch-action: manipulation;
        flex: 0 1 auto;
    }

    .model-card-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto 2rem;
        box-sizing: border-box;
    }
    
    .model-gallery {
        width: 100%;
        max-width: 100%;
        order: 1;
        margin: 0 auto;
    }
    
    .model-main-image {
        width: 100%;
        max-width: 100%;
        height: 300px;
        margin: 0 auto;
    }
    
    .model-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .model-thumbnails-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .model-thumbnails {
        gap: 0.5rem;
        padding: 0 20px;
        width: 100%;
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        flex-shrink: 0;
        touch-action: manipulation;
    }
    
    .thumbnail-scroll-btn {
        width: 30px;
        height: 60px;
        min-width: 30px;
        min-height: 60px;
        touch-action: manipulation;
    }
    
    .main-image-scroll-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .zoom-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .model-details {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .model-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .model-header h3 {
        font-size: 1.5rem;
        width: 100%;
        text-align: left;
    }

    .model-description {
        width: 100%;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .model-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .spec-item {
        padding: 1rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: left;
    }
    
    .model-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .model-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 50px;
        text-align: center;
        touch-action: manipulation;
    }
    
    .model-features {
        padding: 0;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .model-features h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .model-features ul {
        padding-left: 1.5rem;
        text-align: left;
    }

    .model-features li {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .customization-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    .custom-option {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .models-page {
        padding: 50px 0;
    }

    .models-page .container {
        padding: 0 15px;
    }
    
    .filter-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: 90px;
        min-height: 44px;
        flex: 1 1 auto;
}

    .model-card-detailed {
        padding: 1rem;
        gap: 1rem;
    }
    
    .model-main-image {
        height: 250px;
    }
    
    .model-thumbnails {
        gap: 0.4rem;
        padding: 0 15px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .thumbnail-scroll-btn {
        width: 25px;
        height: 50px;
        min-width: 25px;
        min-height: 50px;
        font-size: 0.85rem;
    }
    
    .main-image-scroll-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 0.9rem;
    }
    
    .zoom-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 0.9rem;
    }
    
    .model-header h3 {
        font-size: 1.3rem;
    }
    
    .model-description {
        font-size: 0.9rem;
    }
    
    .model-actions .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .model-features h4 {
        font-size: 1rem;
    }
    
    .model-features ul {
        padding-left: 1.2rem;
    }
    
    .model-features li {
        font-size: 0.85rem;
    }
    
    .spec-item {
        padding: 0.85rem;
        font-size: 0.85rem;
    }
}

/* Gallery Filter */
.gallery-filter {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-page-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

/* Kare oran için - modern tarayıcılar */
@supports (aspect-ratio: 1) {
    .gallery-item {
        aspect-ratio: 1;
        padding-bottom: 0;
    }
}

/* Eski tarayıcılar için fallback */
@supports not (aspect-ratio: 1) {
    .gallery-item {
        padding-bottom: 100%;
    }
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-image img[loading="lazy"] {
    opacity: 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.gallery-image img.loaded {
    opacity: 1;
    position: relative;
    z-index: 2;
}

/* Loading skeleton */
.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.gallery-image:has(img.loaded)::before {
    animation: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.1);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: white;
    font-size: 1rem;
    text-align: center;
}

.gallery-number-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 3;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-btn {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #A8A8A8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

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

.author-photo {
    width: 60px;
    height: 60px;
}

.author-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #A8A8A8;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

#lightbox-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.lightbox-info {
    padding: 2rem;
}

.lightbox-info h3 {
    color: #A8A8A8;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: #666;
    margin: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination-btn {
    padding: 10px 18px;
    border: 2px solid #A8A8A8;
    background: transparent;
    color: #A8A8A8;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pagination-btn:hover {
    background: #A8A8A8;
    color: white;
}

.pagination-btn.active {
    background: #A8A8A8;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    background: transparent;
    color: #A8A8A8;
}

/* Gallery item hidden for pagination */
.gallery-item.hidden {
    display: none;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

/* ============================================
   GALLERY PAGE - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .gallery-page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .gallery-item {
        min-height: 200px;
        width: 100%;
        max-width: 100%;
    }

    .gallery-image {
        width: 100%;
        height: 100%;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
        margin: 0 auto;
    }
    
    .lightbox-info {
        padding: 1.5rem;
        width: 100%;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.2rem;
        touch-action: manipulation;
    }

    .gallery-lightbox-close {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        font-size: 1.3rem;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-section .container {
        padding: 0 15px;
    }

    .gallery-page-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        min-height: 250px;
    }

    .image-placeholder {
        width: 100%;
        height: 100%;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 0.95rem;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 1rem;
        left: 10px;
        right: 10px;
    }

    .gallery-lightbox-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.1rem;
        top: 10px;
        right: 10px;
    }

    .gallery-number-overlay {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .testimonial-card {
        padding: 1.25rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #A8A8A8;
    text-align: left;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #333;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: white;
    letter-spacing: 0.01em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A8A8A8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #A8A8A8;
    border-color: #A8A8A8;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: #A8A8A8;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.quick-contact,
.social-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3,
.quick-contact h3,
.social-contact h3 {
    color: #A8A8A8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #A8A8A8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.quick-contact p,
.social-contact p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #A8A8A8;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #A8A8A8;
    background: white;
}

.social-link:hover {
    transform: translateX(5px);
    border-color: #A8A8A8;
    background: #A8A8A8;
    color: white;
}

.social-link.facebook {
    border: 2px solid #A8A8A8;
}

.social-link.instagram {
    border: 2px solid #A8A8A8;
}

.social-link.twitter {
    border: 2px solid #A8A8A8;
}

.social-link.linkedin {
    border: 2px solid #A8A8A8;
}

.social-link.tiktok {
    border: 2px solid #A8A8A8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: #A8A8A8;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #A8A8A8;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #A8A8A8, #D0D0D0);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: white;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.map-placeholder .btn {
    background: white;
    color: #A8A8A8;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-placeholder .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.map-placeholder .btn i {
    font-size: 1.1rem;
}

/* ============================================
   CONTACT PAGE - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 100%;
        padding: 2rem;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .form-header {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
        text-align: center;
        width: 100%;
    }

    .form-header p {
        text-align: center;
        width: 100%;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group label {
        width: 100%;
        text-align: left;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
        box-sizing: border-box;
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .form-group button[type="submit"] {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 50px;
        touch-action: manipulation;
    }
    
    .contact-info-card,
    .quick-contact,
    .social-contact {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .info-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        width: 100%;
        padding: 1rem 0;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .info-text {
        flex: 1;
        text-align: left;
    }

    .faq-item {
        width: 100%;
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1rem;
        width: 100%;
        min-height: 50px;
        touch-action: manipulation;
    }

    .faq-question h4 {
        font-size: 1rem;
        text-align: left;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
        width: 100%;
    }
    
    .map-placeholder {
        width: 100%;
        max-width: 100%;
        height: 300px;
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
        padding: 12px 15px;
        touch-action: manipulation;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-section .container {
        padding: 0 15px;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        min-height: 44px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-group button[type="submit"] {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .contact-info-card,
    .quick-contact,
    .social-contact {
        padding: 1.25rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .info-text {
        text-align: center;
    }
    
    .social-contact .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .map-placeholder {
        height: 250px;
        padding: 1.5rem;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.85rem;
    }
}

/* ============================================
   ABOUT PAGE - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .about-story,
    .mission-vision,
    .manufacturing,
    .certificates,
    .team,
    .stats {
        padding: 60px 0;
    }

    .about-story .container,
    .mission-vision .container,
    .manufacturing .container,
    .certificates .container,
    .team .container,
    .stats .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .story-content,
    .manufacturing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
    }

    .story-text,
    .manufacturing-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .story-text h2,
    .manufacturing-text h2 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .story-text p,
    .manufacturing-text p {
        text-align: center;
        width: 100%;
    }

    .story-image,
    .manufacturing-image {
        width: 100%;
        max-width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .story-placeholder,
    .manufacturing-placeholder {
        width: 100%;
        max-width: 300px;
        height: 250px;
        margin: 0 auto;
    }
    
    .mv-grid,
    .certificates-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        margin: 0 auto;
    }

    .mv-card,
    .certificate,
    .stat-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .team-member {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .page-header {
        padding: 130px 20px 60px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    .page-header p {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-story,
    .mission-vision,
    .manufacturing,
    .certificates,
    .team,
    .stats {
        padding: 50px 0;
    }

    .about-story .container,
    .mission-vision .container,
    .manufacturing .container,
    .certificates .container,
    .team .container,
    .stats .container {
        padding: 0 15px;
    }

    .story-content,
    .manufacturing-content {
        gap: 1.5rem;
    }

    .story-placeholder,
    .manufacturing-placeholder {
        max-width: 100%;
        height: 220px;
    }

    .mv-grid,
    .certificates-grid,
    .stats-grid {
        gap: 1.25rem;
    }
    
    .mv-card,
    .team-member,
    .certificate,
    .stat-card {
        padding: 1.5rem;
    }

    .page-header {
        padding: 110px 15px 50px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .social-links {
        display: none;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
