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

html {
    scroll-padding-top: 80px;
}

/* Dark Theme Only - Twilight Ocean Elegance */
:root {
    --primary-dark: #2C3E47;           /* Soft twilight ocean */
    --primary-teal: #6BA5B8;           /* Gentle ocean waves */
    --primary-beige: #D9CAB8;          /* Soft evening sand */
    --primary-cream: #EDE6DD;          /* Warm candlelight */

    --dark-darker: #243540;            /* Deeper twilight */
    --dark-medium: #344D5A;            /* Dusk water */
    --dark-lighter: #3F5968;           /* Evening mist */

    --beige-dark: #C9B9A7;             /* Warm dusk sand */
    --beige-light: #D9CAB8;            /* Soft beach evening */
    --cream: #EDE6DD;                  /* Gentle glow */
    --cream-light: #F5F0EA;            /* Soft luminance */

    --accent-gold: #D4BE9F;            /* Warm amber light */
    --accent-gold-bright: #E4D6BF;     /* Golden hour glow */
    --accent-gold-dim: #C3AD8E;        /* Muted warmth */

    /* Text colors */
    --text-dark: #EDE6DD;              /* Soft bright text */
    --text-medium: #D4CABE;            /* Medium text */
    --text-light: #B3A99C;             /* Subtle text */

    /* Background colors */
    --bg-primary: #2C3E47;             /* Elegant twilight base */
    --bg-secondary: #344D5A;           /* Gentle evening water */
    --bg-dark: #3F5968;                /* Soft dark panels */

    /* Legacy aliases for backward compatibility */
    --olive: #D9CAB8;
    --sage: #C9B9A7;
    --alabaster: #2C3E47;
    --beige: #D9CAB8;
    --white: #F5F0EA;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Section-specific colors */
    --kobido-primary: #D4BE9F;
    --kobido-secondary: #E4D6BF;
    --kobido-light: #435B6A;
    --kobido-accent: #D9CAB8;
    --kobido-text-dark: #EDE6DD;
    --kobido-text-medium: #D4CABE;

    --laser-primary: #6BA5B8;
    --laser-secondary: #8BBDCD;
    --laser-light: #435B6A;
    --laser-accent: #D9CAB8;
    --laser-text-dark: #EDE6DD;
    --laser-text-medium: #D4CABE;

    /* UI Elements */
    --nav-bg: rgba(44, 62, 71, 0.95);
    --nav-bg-scrolled: rgba(44, 62, 71, 0.98);
    --nav-shadow: 0 2px 20px rgba(0,0,0,0.3);
    --card-bg: #435B6A;
    --card-border: rgba(212, 190, 159, 0.3);
    --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    --card-hover-shadow: 0 4px 25px rgba(107, 165, 184, 0.3);
    --border-color: rgba(179, 169, 156, 0.25);
    --gradient-hero: linear-gradient(135deg, #2C3E47 0%, #344D5A 50%, #3F5968 100%);
    --gradient-services: linear-gradient(135deg, #344D5A 0%, #2C3E47 100%);
    --gradient-pricing: linear-gradient(135deg, #2C3E47 0%, #344D5A 100%);
    --gradient-contact: linear-gradient(135deg, #4A7C8C 0%, #6BA5B8 100%);
    --contact-text: #F5F0EA;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-medium);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 1rem; }

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--nav-shadow);
    transition: var(--transition);
}

nav {
    border-bottom: 1px solid rgba(232, 228, 223, 0.1);
}

nav.scrolled {
    background: var(--nav-bg-scrolled);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    color: #3B5563;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo {
    color: var(--accent-gold-bright);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.cta-button {
    color: var(--white);
}

.nav-links a.cta-button {
    color: var(--bg-primary);
}

.cta-button {
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button {
    color: var(--bg-primary);
    font-weight: 600;
}

.cta-button:hover {
    background: var(--accent-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 183, 106, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-gold-dim) 0%, transparent 70%);
    opacity: 0.15;
    top: -250px;
    right: -250px;
}

.hero::before {
    opacity: 0.15;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

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

.hero-text h1 {
    color: var(--accent-gold-bright);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}


.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInLeft 1s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideInLeft 1s ease 0.4s forwards;
}

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

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.6s forwards;
}

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

.tech-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

.tech-badge {
    border: 1px solid rgba(212, 183, 106, 0.2);
}


@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tech-badge h4 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}


.tech-badge p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}


/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--gradient-services);
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    text-align: center;
    margin-bottom: 1rem;
}


.services .intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}


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

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.service-card:hover {
    border-color: rgba(212, 183, 106, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-icon i {
    color: var(--bg-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    margin-bottom: 1rem;
    text-align: center;
}


.service-card > p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}


.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--card-border);
}


.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.service-link {
    text-align: center;
    color: var(--accent-gold-bright);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem;
    letter-spacing: 0.5px;
}


.service-link:hover {
    color: var(--text-dark);
    text-decoration: underline;
}


/* Pricing Section */
.pricing {
    opacity: 1 !important;
    padding: 5rem 0;
    background: var(--gradient-pricing);
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-intro h2 {
    color: var(--accent-gold-bright);
}


.pricing-intro p {
    color: var(--text-medium);
}

.price-table-wrapper {
    margin: 3rem 0;
}

.price-table-wrapper h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}


.price-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    table-layout: fixed;
}


.price-table thead {
    background: linear-gradient(135deg, var(--accent-gold-dim), var(--accent-gold));
    color: var(--bg-primary);
}


.price-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-right: 1px solid var(--bg-primary);
}

.price-table th:last-child {
    border-right: none;
}


.price-table th:first-child {
    padding-left: 2rem;
}

.price-table th:last-child {
    padding-right: 2rem;
}

.price-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--bg-secondary);
}


.price-table td {
    padding: 1.25rem;
    color: var(--text-medium);
    border-right: 1px solid var(--bg-primary);
}

.price-table td:last-child {
    border-right: none;
}

.price-table td:first-child {
    padding-left: 2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.price-table td:last-child {
    padding-right: 2rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold-bright);
}


.price-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
    color: var(--bg-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive pricing table */
@media (max-width: 768px) {
    .price-table {
        display: block;
        overflow-x: visible;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .price-table thead {
        display: none;
    }

    .price-table tbody {
        display: block;
    }

    .price-table tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid var(--card-border);
        border-radius: 12px;
        overflow: hidden;
        background: var(--card-bg);
        box-shadow: var(--card-shadow);
    }

    .price-table td {
        display: block;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .price-table td:last-child {
        border-bottom: none;
        padding-bottom: 1.25rem;
    }

    .price-table td:first-child {
        background: linear-gradient(135deg, var(--accent-gold-dim), var(--accent-gold));
        color: var(--bg-primary);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1.25rem;
        text-align: center;
    }


    .price-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: var(--text-light);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }

    .price-table td:first-child::before {
        display: none;
    }

    .price-amount,
    .price-discount {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .price-note {
        display: block;
        margin-top: 0.5rem;
    }

    .price-discount {
        font-size: 1rem;
    }
}

.promotion-banner {
    background: var(--gradient-contact);
    color: var(--contact-text);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 183, 106, 0.3);
}


.promotion-banner::before {
    content: '🎉';
    position: absolute;
    font-size: 5rem;
    opacity: 0.1;
    top: -20px;
    right: 50px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.promotion-banner h3 {
    color: var(--contact-text);
}


.promotion-text {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--contact-text);
}


/* Technology Section */
.technology {
    padding: 5rem 0;
    background: var(--bg-secondary);
}


.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tech-features {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}


.tech-feature {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--bg-primary);
}

.feature-icon i {
    font-size: 22px;
    color: var(--bg-primary);
}


/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gradient-services);
}


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

.certificates {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.certificate {
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    font-size: 0.9rem;
    color: var(--accent-gold);
}


/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--bg-secondary);
}


.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.location-info {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}


.location-info h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.location-info h3.brand-name {
    font-family: 'Allura', cursive;
    font-size: 2.5rem;
    color: #F5F2ED;
    letter-spacing: 1px;
    font-weight: 400;
}


.address-details {
    margin: 2rem 0;
}

.address-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.address-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.address-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-icon i {
    font-size: 26px;
    color: var(--accent-gold);
}


.address-content h4 {
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}


.address-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.parking-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}


.map-container {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    height: 100%;
    min-height: 450px;
    border: 1px solid var(--card-border);
}


.map-container h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}


.map-frame {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


@media (max-width: 968px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gradient-contact);
    color: var(--contact-text);
}

.contact h2 {
    color: var(--contact-text);
    text-align: center;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--contact-text);
}

.contact > .container > p {
    color: var(--dark-medium);
}

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

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 62, 71, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}


.contact-icon i {
    font-size: 28px;
    color: var(--contact-text);
}


.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--contact-text);
}


.contact-item a {
    color: var(--dark-medium);
    text-decoration: none;
    transition: var(--transition);
}


.contact-item a:hover {
    color: var(--contact-text);
}


.contact-item p {
    color: var(--dark-medium);
}


/* Footer */
footer {
    background: var(--dark-darker);
    color: var(--text-medium);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}


.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 80px;
    height: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}


.footer-logo h3 {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-medium);
    margin: 0;
    letter-spacing: 1px;
}


.footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-name {
    font-family: 'Allura', cursive;
    font-size: 1.3em;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
}


.social-links a:hover {
    color: var(--accent-gold);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--beige);
}


.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-top: 1px solid var(--border-color);
    }


    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content,
    .tech-content,
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.section-header {
    text-align: center;
    color: var(--accent-gold-bright);
}


.section-description {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}


.cta-button-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.cta-button-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}



.cta-button-inverse {
    background: var(--bg-primary);
    color: var(--accent-gold);
    margin-top: 1.5rem;
}

.cta-button-inverse:hover {
    background: var(--bg-secondary);
}


.cta-button-full {
    width: 100%;
    text-align: center;
}

.hero-logo-container {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(74, 124, 140, 0.15));
    /* animation: floatLogo 6s ease-in-out infinite; */
    opacity: 0.95;
}

.hero-logo {
    filter: drop-shadow(0 10px 40px rgba(212, 190, 159, 0.25));
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Section Divider with Logo */
.section-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 0 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.section-divider img {
    width: 60px;
    height: auto;
    margin: 0 2rem;
    opacity: 0.6;
    filter: grayscale(20%);
}

.section-divider img {
    opacity: 0.5;
}

.about-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--card-border);
}


.about-box h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}


.about-box-content {
    text-align: left;
}

.about-box-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}


.about-intro {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


.about-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.social-links-container {
    margin-top: 1rem;
}

footer p.footer-details {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating Action Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 183, 106, 0.5);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
    font-weight: 600;
}


@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 183, 106, 0.7);
}


@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Kobido Main Section */
.kobido-main-section {
    background: var(--gradient-services);
    padding: 6rem 0;
}


.kobido-main-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.kobido-main-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    text-align: center;
    margin-bottom: 1rem;
}


.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}


.intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.feature-card:hover {
    border-color: rgba(212, 183, 106, 0.4);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    background: var(--kobido-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card .feature-icon i {
    font-size: 36px;
    color: var(--bg-primary);
}


.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    margin-bottom: 0.75rem;
}


.feature-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}


/* Kobido Benefits Section */
.kobido-benefits-section {
    background: var(--bg-primary);
    padding: 5rem 0;
}


.kobido-benefits-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    text-align: center;
    margin-bottom: 3rem;
}


.target-audience {
    margin: 2rem 0 4rem 0;
    text-align: center;
}

.target-audience h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.checklist {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 1.5rem auto;
    text-align: left;
}

.checklist li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}


.checklist li:last-child {
    border-bottom: none;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.effect-column {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}


.effect-column:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}


.effect-column h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 600;
}


.effect-column ul {
    list-style: none;
    padding: 0;
}

.effect-column li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}


.effect-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}


.cta-text {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}


.cta-text strong {
    color: var(--accent-gold-bright);
    font-weight: 600;
}


/* Kobido Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kobido-main-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .kobido-main-section {
        padding: 3rem 0;
    }

    .kobido-main-section .container {
        padding: 0 1rem;
    }

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

    .kobido-main-section h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .kobido-benefits-section {
        padding: 3rem 0;
    }

    .kobido-benefits-section h2 {
        font-size: 1.8rem;
    }

    .target-audience h3 {
        font-size: 1.2rem;
    }

    .checklist {
        padding: 0 1rem;
    }

    .checklist li {
        font-size: 1rem;
    }

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

    .cta-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Laser Main Section */
.laser-main-section {
    background: var(--gradient-services);
    padding: 6rem 0;
}


.laser-main-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.laser-main-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    text-align: center;
    margin-bottom: 1rem;
}


.laser-main-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}


.laser-main-section .intro-text {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}


.laser-main-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.laser-main-section .feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}


.laser-main-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}


.laser-main-section .feature-card:hover {
    border-color: rgba(212, 183, 106, 0.4);
}

.laser-main-section .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    background: var(--laser-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.laser-main-section .feature-icon i {
    font-size: 36px;
    color: var(--bg-primary);
}


.laser-main-section .feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    margin-bottom: 0.75rem;
}


.laser-main-section .feature-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}


/* Laser Benefits Section */
.laser-benefits-section {
    background: var(--bg-primary);
    padding: 5rem 0;
}


.laser-benefits-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    text-align: center;
    margin-bottom: 3rem;
}


.laser-benefits-section .target-audience {
    margin: 2rem 0 4rem 0;
    text-align: center;
}

.laser-benefits-section .target-audience h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.laser-benefits-section .checklist {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 1.5rem auto;
    text-align: left;
}

.laser-benefits-section .checklist li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}


.laser-benefits-section .checklist li:last-child {
    border-bottom: none;
}

.effectiveness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.effectiveness-column {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}


.effectiveness-column:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}


.effectiveness-column h4 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 600;
}


.effectiveness-column ul {
    list-style: none;
    padding: 0;
}

.effectiveness-column li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}


.effectiveness-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}


.laser-benefits-section .cta-text {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}


.laser-benefits-section .cta-text strong {
    color: var(--accent-gold-bright);
    font-weight: 600;
}


/* Alternating Section Backgrounds */
.section-bg-light {
    background: var(--bg-secondary) !important;
}

.section-bg-dark {
    background: var(--bg-primary) !important;
}

/* Laser Responsive */
@media (max-width: 1024px) {
    .laser-main-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .laser-main-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .laser-main-section {
        padding: 3rem 0;
    }

    .laser-main-section .container {
        padding: 0 1rem;
    }

    .laser-main-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .laser-main-section h2 {
        font-size: 1.8rem;
    }

    .laser-main-section .section-subtitle {
        font-size: 0.95rem;
    }

    .laser-main-section .intro-text {
        font-size: 1rem;
    }

    .laser-benefits-section {
        padding: 3rem 0;
    }

    .laser-benefits-section h2 {
        font-size: 1.8rem;
    }

    .laser-benefits-section .target-audience h3 {
        font-size: 1.2rem;
    }

    .laser-benefits-section .checklist {
        padding: 0 1rem;
    }

    .laser-benefits-section .checklist li {
        font-size: 1rem;
    }

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

    .laser-benefits-section .cta-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ============================================
   CAROUSEL STYLES FOR HERO SECTION
   ============================================ */

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 71, 0.95), transparent);
    color: var(--text-dark);
    padding: 2rem 2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 62, 71, 0.7);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    border: 2px solid rgba(212, 190, 159, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 24px;
}

.carousel-btn:hover {
    background: rgba(44, 62, 71, 0.95);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-caption {
        padding: 1.5rem 1rem 1rem;
        font-size: 0.95rem;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 20px;
    }
}

/* Accessibility */
.carousel-btn:focus,
.carousel-dot:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ============================================
   SERVICE CARD IMAGES
   ============================================ */

.service-image {
    width: calc(100% + 5rem);
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Responsive service images */
@media (max-width: 768px) {
    .service-image {
        height: 180px;
        margin: -2.5rem -2.5rem 1rem -2.5rem;
    }
}