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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0f766e;
    --accent-color: #ea580c;
    --text-color: #1f2937;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--secondary-color);
    margin-top: -3px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, max-width 220ms ease;
    font-weight: 600;
}

/* Expandable CTA button styles */
.cta-button--expandable {
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 15px 30px;
}

/* Slight optical centering tweak for the hero CTA */
.hero-content .cta-button--expandable {
    margin-left: 12px;
}

.cta-button--expandable:hover,
.cta-button--expandable:focus,
.cta-button--expandable:focus-within {
    max-width: 520px;
}

.cta-button--expandable .cta-button__main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button--expandable .cta-button__reveal {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-8px);
    pointer-events: none;
    transition: max-width 220ms ease, opacity 160ms ease, transform 160ms ease;
}

.cta-button--expandable:hover .cta-button__reveal,
.cta-button--expandable:focus .cta-button__reveal,
.cta-button--expandable:focus-within .cta-button__reveal {
    max-width: 420px;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cta-button--expandable .cta-button__phone {
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
}

.cta-button--expandable .cta-button__copy {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    padding: 0.3rem 0.7rem;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.cta-button--expandable .cta-button__copy:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-button--expandable .cta-button__copy svg {
    width: 16px;
    height: 16px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.inquire-cta {
    background-color: var(--secondary-color);
}

.inquire-cta:hover {
    background-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.3);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Products Section */
.products {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    min-height: 220px;
}

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

.product-card:hover .product-image > img,
.product-card:hover .product-image > video {
    transform: scale(1.05);
}

.media-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.media-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 700ms ease, transform 3600ms ease;
}

.media-slide.is-active {
    opacity: 1;
    transform: scale(1.08);
}

.media-slideshow .media-slide:not(.is-active) {
    pointer-events: none;
}

.media-slideshow video {
    background: #111;
}

.media-coming-soon {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4b5563;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #eef2ff 0%, #f3f4f6 100%);
    padding: 1rem;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

.inquire-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: white;
}

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

.about-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Owner Section */
.owner-section {
    padding: 0px 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.owner-image {
    overflow: hidden;
    border-radius: 15px;
    background: transparent;
    max-width: 400px;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
}

.owner-info h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.owner-info h3 {
    font-size: 1.1rem;
    color: #7c2d12;
    margin-bottom: 1rem;
    font-weight: 600;
}

.owner-info p {
    font-size: 0.95rem;
    color: #3f3f3f;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.owner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owner-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.highlight strong {
    display: block;
    font-size: 1.8rem;
    color: #7c2d12;
    margin-bottom: 0.5rem;
}

.highlight span {
    display: block;
    font-size: 0.95rem;
    color: #3f3f3f;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.location-map-card {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.location-map-card h3 {
    padding: 2rem 2rem 0.5rem 2rem;
}

.location-map-card p {
    padding: 0 2rem;
}

.location-map {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #d94a06;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 350px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .owner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .owner-info h2 {
        font-size: 1.8rem;
    }

    .owner-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image {
        min-height: 200px;
    }

    .media-slideshow {
        min-height: 200px;
    }

    .products {
        padding: 40px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .about {
        padding: 40px 20px;
    }

    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0;
    }

    .nav-container {
        flex-direction: row;
        gap: 0.3rem;
        padding: 0 10px;
    }

    .logo {
        gap: 0.4rem;
        flex: 1;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text p {
        font-size: 0.65rem;
        margin-top: -2px;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .nav-link {
        padding: 0.2rem 0;
        font-size: 0.8rem;
    }

    .hero {
        padding: 40px 15px;
        min-height: 250px;
    }

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

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Responsive styles for expandable button on mobile */
    .cta-button--expandable {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .hero-content .cta-button--expandable {
        margin-left: 0;
    }

    .cta-button--expandable:hover {
        max-width: 380px;
    }

    .cta-button--expandable .cta-button__phone {
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
    }

    .cta-button--expandable .cta-button__copy {
        padding: 0.25rem 0.6rem;
        font-size: 0.85rem;
    }

    .cta-button--expandable .cta-button__copy svg {
        width: 14px;
        height: 14px;
    }

    .owner-section {
        padding: 30px 15px;
    }

    .owner-content {
        gap: 1.5rem;
    }

    .owner-info h2 {
        font-size: 1.5rem;
    }

    .owner-info h3 {
        font-size: 1rem;
    }

    .owner-info p {
        font-size: 0.9rem;
    }

    .owner-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight {
        padding: 1rem;
    }

    .highlight strong {
        font-size: 1.5rem;
    }

    .products {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .product-image {
        min-height: 170px;
    }

    .media-slideshow {
        min-height: 170px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .product-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .features li {
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }

    .inquire-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .about {
        padding: 30px 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .contact {
        padding: 30px 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .location-map {
        height: 200px !important;
    }

    .footer {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease;
}
