/* ==========================================
   CRYSTALFORGE LUXURY DESIGN SYSTEM
   Color Theme: Pearl White, Ivory, Champagne Gold,
   Soft Metallic Gold, Crystal Blue, Sapphire Blue Accents
   NO BLACK BACKGROUNDS
   ========================================== */

:root {
    --bg-primary: #fffdf8;
    --bg-alt: #f5eee2;
    --bg-card: #ffffff;
    --text-main: #1f2229;
    --text-muted: #5a5f6e;
    --champagne-gold: #d4af37;
    --soft-gold: #e6ca65;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #c59b27 100%);
    --crystal-blue: #e8f4fd;
    --sapphire-blue: #0f3057;
    --sapphire-accent: #1d4ed8;
    --border-color: rgba(212, 175, 55, 0.25);
    --shadow-luxury: 0 20px 40px rgba(31, 34, 41, 0.06);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.sub-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--champagne-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--champagne-gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: multiply;
}

.custom-cursor.zoom-hover {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.9);
}

.cursor-text {
    font-size: 0;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    transition: font-size 0.3s;
}

.custom-cursor.zoom-hover .cursor-text {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }
}

/* Navigation Bar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--sapphire-blue);
    letter-spacing: 0.1em;
}

.logo-icon {
    color: var(--champagne-gold);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champagne-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--sapphire-blue);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,244,253,0.8) 0%, rgba(245,238,226,0.2) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 650px;
}

.hero-subtitle-tag {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--champagne-gold);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--sapphire-blue);
    color: #fff;
    border: 1px solid var(--sapphire-blue);
    box-shadow: var(--shadow-luxury);
}

.btn-primary:hover {
    background: var(--sapphire-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--sapphire-blue);
    border: 1px solid var(--champagne-gold);
}

.btn-secondary:hover {
    background: var(--champagne-gold);
    color: #fff;
    transform: translateY(-2px);
}

.hero-visual-container {
    flex: 1;
    position: relative;
    height: 550px;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.floating-element:hover img {
    transform: scale(1.08);
}

.element-1 {
    width: 280px;
    height: 350px;
    top: 50px;
    left: 50px;
}

.element-2 {
    width: 220px;
    height: 260px;
    bottom: 30px;
    right: 40px;
}

.element-3 {
    width: 180px;
    height: 180px;
    top: 20px;
    right: 80px;
    border-radius: 50%;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: var(--champagne-gold);
}

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.35rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-text {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--champagne-gold);
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5s;
    transition: var(--transition);
}

.service-card:hover .btn-text {
    color: var(--sapphire-blue);
    transform: translateX(5px);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    transition: 0.7s;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 48, 87, 0.1);
}

.product-img-box {
    height: 280px;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--champagne-gold);
    color: var(--sapphire-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.product-card:hover .btn-outline {
    background: var(--sapphire-blue);
    color: #fff;
    border-color: var(--sapphire-blue);
}

/* 3D Showcase Section */
.showcase-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    font-size: 2.75rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.5rem;
}

.showcase-content p:nth-child(3) {
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--champagne-gold);
    margin-bottom: 1.5rem;
}

.showcase-text {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.showcase-3d-stage {
    flex: 1;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    background: radial-gradient(circle, var(--crystal-blue) 0%, transparent 70%);
    border-radius: 24px;
}

.rotating-ring-assembly {
    width: 220px;
    height: 220px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateAssembly 20s linear infinite;
}

.ring-core {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 12px solid;
    border-image: var(--gold-gradient) 1;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: rotateX(60deg) rotateY(30deg);
}

.diamond-orbit {
    position: absolute;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

.d-1 { top: -20px; left: 50%; transform: translateX(-50%); animation: floatOrbit 4s ease-in-out infinite; }
.d-2 { bottom: 10px; right: -10px; animation: floatOrbit 5s ease-in-out infinite 1s; }
.d-3 { bottom: 10px; left: -10px; animation: floatOrbit 4.5s ease-in-out infinite 2s; }

@keyframes rotateAssembly {
    0% { transform: rotateY(0deg) rotateX(15deg); }
    100% { transform: rotateY(360deg) rotateX(15deg); }
}

@keyframes floatOrbit {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* About Us Section */
.about-grid {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-img-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    height: 500px;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-luxury);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sapphire-blue);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--champagne-gold);
}

.about-content {
    flex: 1;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--sapphire-blue);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.about-body {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2.25rem;
    color: var(--sapphire-blue);
    display: inline-block;
}

.stat-plus {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--champagne-gold);
    font-weight: 700;
    display: inline-block;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Location / Map Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--border-color);
}

.location-info h3 {
    font-size: 1.75rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.address-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-details-list {
    margin-bottom: 2rem;
}

.contact-details-list li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-details-list strong {
    color: var(--sapphire-blue);
}

.map-wrapper {
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Contact Section */
.contact-container {
    max-width: 800px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--border-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sapphire-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.error-msg {
    font-size: 0.8rem;
    color: #dc2626;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc2626;
}

.form-group.error .error-msg {
    display: block;
}

.btn-submit-wrap {
    text-align: center;
    margin-top: 1rem;
}

.form-success-msg {
    grid-column: span 2;
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

/* Video Section */
.video-section {
    position: relative;
    background: var(--sapphire-blue);
    overflow: hidden;
    text-align: center;
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
}

#makingVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.video-overlay-text h2 {
    font-size: 3rem;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.video-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 48, 87, 0.75);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-container-wrapper:hover .video-controls-bar {
    opacity: 1;
}

.vid-ctrl-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.vid-ctrl-btn:hover {
    background: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: var(--sapphire-blue);
}

.video-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.video-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--champagne-gold);
}

.video-sub-header {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.video-sub-header h3 {
    font-size: 2rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.5rem;
}

.video-sub-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--sapphire-blue);
    color: #fff;
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: #fff !important;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.social-icons a:hover {
    background: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: var(--sapphire-blue);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--champagne-gold);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--champagne-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 48, 87, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    width: 90%;
    max-width: 950px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    border: 1px solid var(--border-color);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--sapphire-blue);
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--champagne-gold);
    transform: rotate(90deg);
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-img-box {
    height: 100%;
    min-height: 400px;
}

.modal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text-box {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text-box h2 {
    font-size: 2rem;
    color: var(--sapphire-blue);
    margin-bottom: 1rem;
}

.modal-text-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    margin-bottom: 2rem;
}

.modal-benefits h4 {
    font-size: 1rem;
    color: var(--sapphire-blue);
    margin-bottom: 0.75rem;
}

.modal-benefits ul li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.modal-benefits ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--champagne-gold);
    font-size: 0.75rem;
}

.modal-cta {
    align-self: flex-start;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .services-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 1000;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .hero {
        flex-direction: column;
        padding-top: 7rem;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual-container {
        width: 100%;
        height: 400px;
        margin-top: 3rem;
    }
    .services-grid, .products-grid, .about-grid, .location-grid, .modal-body-grid {
        grid-template-columns: 1fr;
    }
    .showcase-container {
        flex-direction: column;
    }
    .contact-form {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-success-msg {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}