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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #ffffff;
    background: url('bg3.png') center/cover fixed;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 136, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 100, 255, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
}

.cart-badge {
    position: absolute;
    right: 40px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow:
        0 4px 15px rgba(255, 184, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cart-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 184, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.logo img {
    height: 450px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.cta-button {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(255, 184, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 184, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-button.large {
    padding: 15px 45px;
    font-size: 16px;
}

.cta-button.outline {
    background: transparent;
    color: #FFB800;
    border: 2px solid #FFB800;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.15);
}

.cta-button.outline::before {
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.15), transparent);
}

.cta-button.outline:hover {
    background: rgba(255, 184, 0, 0.1);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px 60px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        0 0 20px rgba(255, 184, 0, 0.5),
        0 0 40px rgba(255, 184, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content h1 .highlight {
    background: linear-gradient(180deg, #FFE89F 0%, #FFB800 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.8))
            drop-shadow(0 0 60px rgba(255, 184, 0, 0.5))
            drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-tagline-alt {
    margin-top: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.15;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline-alt .tagline-line {
    display: block;
}

/* White lines: keep the cinematic glow */
.hero-tagline-alt .tagline-white {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(255, 184, 0, 0.45),
        0 0 40px rgba(255, 184, 0, 0.25),
        2px 2px 4px rgba(0, 0, 0, 0.85);
}

/* Gold line: match H1 highlight behavior (NO text-shadow, just filter) */
.hero-tagline-alt .tagline-gold {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-top: 10px;
    margin-bottom: 10px;

    background: linear-gradient(180deg, #FFE89F 0%, #FFB800 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Important: prevents the parent glow from muddying the gradient */
    text-shadow: none;

    filter: drop-shadow(0 0 22px rgba(255, 184, 0, 0.65))
            drop-shadow(0 0 45px rgba(255, 184, 0, 0.35))
            drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.85));
}

.hero-subtitle {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #FFB800;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cccccc;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 40px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(255, 184, 0, 0.5),
        0 0 40px rgba(255, 184, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-tagline strong {
    background: linear-gradient(180deg, #FFE89F 0%, #FFB800 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.8))
            drop-shadow(0 0 60px rgba(255, 184, 0, 0.5))
            drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

/* Founder Section */
.founder-section {
    position: relative;
    padding: 80px 40px;
    background: transparent;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 136, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 100, 255, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.founder-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #FFB800;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 184, 0, 0.6),
        inset 0 0 20px rgba(255, 184, 0, 0.1);
    transition: all 0.4s ease;
}

.founder-image img:hover {
    transform: translateY(-5px);
    border-color: #FFE89F;
    box-shadow:
        0 15px 40px rgba(255, 184, 0, 0.5),
        0 0 30px rgba(255, 184, 0, 0.8),
        inset 0 0 30px rgba(255, 184, 0, 0.2);
}

.founder-text h2 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFE89F 0%, #FFB800 30%, #FF8C00 50%, #FFB800 70%, #FFE89F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.5));
}

.founder-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.founder-signature {
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Apple Chancery', cursive;
    font-size: 24px;
    color: #FFB800;
    font-weight: normal;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 0;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}

.founder-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.founder-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #FFB800;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 184, 0, 0.4);
    transition: all 0.3s ease;
}

.founder-gallery img:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #FFE89F;
    box-shadow:
        0 10px 25px rgba(255, 184, 0, 0.4),
        0 0 20px rgba(255, 184, 0, 0.6);
}

/* Founder Video Thumbnails */
.founder-videos {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.video-thumb {
    position: relative;
    cursor: pointer;
    flex: 1;
    max-width: 180px;
}

.video-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 184, 0, 0.5);
    transition: all 0.3s ease;
}

.video-thumb:hover img {
    border-color: #FFB800;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: background 0.3s ease;
    pointer-events: none;
}

.video-thumb:hover .video-thumb-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.video-play-icon {
    font-size: 32px;
    color: #FFB800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.video-thumb:hover .video-play-icon {
    transform: scale(1.2);
}

.video-thumb-label {
    text-align: center;
    color: #ccc;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.video-modal-content h3 {
    color: #FFB800;
    font-size: 22px;
    margin-bottom: 20px;
}

.video-modal-content video {
    width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    outline: none;
}

/* Projects Section */
.projects-section {
    position: relative;
    padding: 80px 40px;
    background: transparent;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 136, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 100, 255, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFE89F 0%, #FFB800 30%, #FF8C00 50%, #FFB800 70%, #FFE89F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.5));
}

.section-header p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

.featured-projects {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid #FFB800;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 184, 0, 0.6),
        inset 0 0 20px rgba(255, 184, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.featured-card a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 30px 25px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.featured-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(255, 140, 0, 0.95) 0%, rgba(255, 140, 0, 0.7) 70%, transparent 100%);
}

.card-overlay h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay p {
    font-size: 14px;
    color: #f0f0f0;
    line-height: 1.5;
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: #FFE89F;
    box-shadow:
        0 20px 40px rgba(255, 184, 0, 0.5),
        0 0 30px rgba(255, 184, 0, 0.8),
        inset 0 0 30px rgba(255, 184, 0, 0.2);
}

/* Products Grid */
.products-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #FFB800;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 184, 0, 0.5),
        inset 0 0 15px rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}

.product-card a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.product-card .card-overlay {
    padding: 20px;
}

.product-card .card-overlay h4 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #FFE89F;
    box-shadow:
        0 15px 35px rgba(255, 184, 0, 0.4),
        0 0 25px rgba(255, 184, 0, 0.7),
        inset 0 0 20px rgba(255, 184, 0, 0.15);
}

/* Final CTA Section */
.final-cta {
    position: relative;
    text-align: center;
    padding: 100px 40px;
    background: transparent;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 136, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 100, 255, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFB800 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    z-index: 2;
}

.final-cta h2 {
    position: relative;
    z-index: 10;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFE89F 0%, #FFB800 30%, #FF8C00 50%, #FFB800 70%, #FFE89F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 184, 0, 0.5));
}

.final-cta p {
    position: relative;
    z-index: 10;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    position: relative;
    z-index: 10;
}

/* Customer Creations Gallery */
.gallery-section {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .section-header h2 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFE89F 0%, #FFB800 30%, #FF8C00 50%, #FFB800 70%, #FFE89F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-section .section-header p {
    font-size: 16px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.gallery-thumb:hover {
    border-color: #FFB800;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

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

.gallery-modal-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    width: 100%;
    text-align: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: block;
    margin: 0 auto;
}

.gallery-modal-content p {
    color: #ccc;
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFB800;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10001;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .logo img {
        height: 360px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .featured-projects {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .founder-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .founder-videos {
        justify-content: center;
    }

    /* Fix fuzzy background on mobile by disabling fixed attachment */
    body {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo img {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-tagline-alt .tagline-white {
        font-size: 28px;
    }

    .hero-tagline-alt .tagline-gold {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-tagline {
        font-size: 24px;
        line-height: 1.4;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .featured-projects,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .projects-section {
        padding: 40px 20px;
    }

    .founder-section {
        padding: 40px 20px;
    }

    .founder-text h2 {
        font-size: 28px;
    }

    .founder-text p {
        font-size: 14px;
    }

    .founder-signature {
        font-size: 20px;
    }

    .founder-videos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .video-thumb {
        max-width: 150px;
    }

    .video-thumb-label {
        font-size: 11px;
    }

    .video-play-icon {
        font-size: 26px;
    }

    .final-cta {
        padding: 60px 20px;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-section .section-header h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .hero-buttons {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 240px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .cta-button.large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-tagline-alt .tagline-white {
        font-size: 20px;
    }

    .hero-tagline-alt .tagline-gold {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-tagline {
        font-size: 18px;
        line-height: 1.3;
    }

    .card-overlay h3 {
        font-size: 18px;
    }

    .card-overlay h4 {
        font-size: 14px;
    }

    .founder-text h2 {
        font-size: 22px;
    }

    .founder-text p {
        font-size: 13px;
    }

    .founder-signature {
        font-size: 18px;
    }

    .founder-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-section {
        padding: 40px 15px;
    }

    .gallery-section .section-header h2 {
        font-size: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }

    .gallery-modal-content {
        padding: 10px;
    }

    .gallery-modal-close {
        top: -10px;
        right: -5px;
        width: 34px;
        height: 34px;
        font-size: 18px;
        line-height: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .cta-button.large {
        width: 80%;
        text-align: center;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.featured-card,
.product-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.featured-card:nth-child(1) { animation-delay: 0.1s; }
.featured-card:nth-child(2) { animation-delay: 0.2s; }
.featured-card:nth-child(3) { animation-delay: 0.3s; }

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.product-card:nth-child(7) { animation-delay: 0.4s; }
.product-card:nth-child(8) { animation-delay: 0.45s; }

/* Chat Widget Label */
#chat-label {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #000000;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    box-shadow:
        0 4px 15px rgba(255, 184, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

#chat-label:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 184, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(255, 184, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow:
            0 4px 25px rgba(255, 184, 0, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Responsive chat label */
@media (max-width: 768px) {
    #chat-label {
        display: none; /* Hide on mobile to avoid clutter */
    }
}

/* Style the Chatwoot bubble for online status */
.woot-widget-bubble {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5) !important;
}

.woot-widget-bubble.is-online::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
}
