/* 
   INVYTRA Official Stylesheet
   Color Palette: Deep Navy, Premium Gold, Warm Cream, Dark Charcoal, White, Off-white
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-bg: #030a16;
    --secondary-bg: #071120;
    --accent-gold: #c5a059;
    --accent-gold-hover: #d4af37;
    --cream: #f4efe8;
    --dark-charcoal: #121212;
    --white: #ffffff;
    --text-light: #f4efe8;
    --text-muted: #8c9bb4;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Background Particle Canvas container */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(197,160,89,0.15) 0%, rgba(197,160,89,0) 70%);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(105vh) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-5vh) translateX(30px) scale(0.8);
        opacity: 0;
    }
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.08em;
}

p {
    font-weight: 300;
}

/* Sticky Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 20px 10%;
    background: rgba(3, 10, 22, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.25em;
    transition: var(--transition-fast);
}

.nav-brand span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-item a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
    opacity: 0.8;
}

.nav-item a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.nav-item.active a {
    color: var(--accent-gold);
    opacity: 1;
}

/* Social Icons Link Style */
.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icon-link {
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icon-link svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

/* Nav Button Style */
.nav-link-btn {
    border: 1px solid var(--accent-gold) !important;
    padding: 8px 20px !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.2em !important;
    color: var(--accent-gold) !important;
    background: transparent !important;
    transition: var(--transition-smooth) !important;
}

.nav-link-btn:hover {
    background: var(--accent-gold) !important;
    color: var(--primary-bg) !important;
}

/* Simple Button Styles */
.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-bg);
    background-color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 0px; /* Sharp corners for modern premium look */
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 0px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Hamburger Menu button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 6px auto;
    background-color: var(--white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 140px 10% 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle at 10% 20%, rgba(3, 10, 22, 1) 0%, rgba(1, 4, 10, 1) 100%);
    overflow: hidden;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(25px);
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 450px;
    opacity: 0;
}

.hero-logo-frame {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.2);
    object-fit: cover;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.hero-logo-img:hover {
    border-color: var(--accent-gold);
    transform: scale(1.03);
}

/* Decorative Gold Lines */
.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.15), transparent);
    height: 1px;
    width: 100%;
    pointer-events: none;
}

.deco-line-1 {
    top: 30%;
    left: 0;
    transform: rotate(-5deg);
}

.deco-line-2 {
    bottom: 25%;
    left: 0;
    transform: rotate(5deg);
}

/* Global Section Layout */
.section {
    padding: 120px 10%;
    position: relative;
    z-index: 2;
    background-color: var(--secondary-bg);
}

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

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

/* Three Ventures Cards Grid */
.ventures-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.venture-card {
    background: transparent;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    padding-bottom: 30px;
}

.venture-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--accent-gold);
}

.venture-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: var(--white);
    margin-bottom: 25px;
}

.venture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.venture-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.venture-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 500;
}

.venture-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.venture-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 60px;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    opacity: 0.85;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1px;
    background-color: var(--accent-gold);
}

.venture-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.venture-btn svg {
    fill: var(--accent-gold);
    transition: transform 0.3s ease;
}

.venture-btn:hover {
    color: var(--white);
}

.venture-btn:hover svg {
    transform: translateX(5px);
    fill: var(--white);
}

/* Simple Transition Section */
.transition-banner {
    padding: 140px 10%;
    background-color: var(--primary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.words-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.banner-word {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-word.gold {
    color: var(--accent-gold);
}

.banner-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.banner-sub {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 1s ease 1.2s;
}

.banner-sub.visible {
    opacity: 1;
}

/* About Preview Section */
.about-preview {
    background-color: var(--secondary-bg);
    text-align: center;
    padding: 120px 10%;
}

.about-preview-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-preview p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 45px;
    opacity: 0.9;
}

/* Footer styles */
.footer {
    background-color: var(--primary-bg);
    padding: 100px 10% 50px 10%;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    text-align: center;
    z-index: 10;
    position: relative;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.22em;
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--accent-gold);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin-bottom: 35px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

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

.footer-domain {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.15em;
    margin-bottom: 35px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 30px;
}

/* Details Page Hero */
.details-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    padding: 180px 10% 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(3, 10, 22, 1) 0%, rgba(1, 4, 10, 1) 100%);
    z-index: 2;
}

.details-hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.details-hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 35px;
}

.animated-line-container {
    width: 100px;
    height: 1px;
    background-color: rgba(197, 160, 89, 0.15);
    position: relative;
    overflow: hidden;
}

.animated-line-bar {
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    animation: loadline 3s infinite ease-in-out;
}

@keyframes loadline {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* Detail Brand Section */
.brand-intro {
    background-color: var(--secondary-bg);
    padding: 120px 10%;
}

.brand-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.brand-intro-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.brand-intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0.9;
}

.brand-summary-box {
    background: rgba(3, 10, 22, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 40px;
}

.summary-item {
    margin-bottom: 30px;
}

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

.summary-title {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.summary-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Venture Detail Section Template */
.venture-detail-sec {
    padding: 120px 10%;
    background-color: var(--primary-bg);
}

.venture-detail-sec:nth-child(even) {
    background-color: var(--secondary-bg);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.venture-detail-sec:nth-child(even) .detail-grid {
    grid-template-columns: 1fr 1.2fr;
}

.venture-detail-sec:nth-child(even) .detail-content {
    grid-column: 2;
}

.venture-detail-sec:nth-child(even) .detail-image-box {
    grid-column: 1;
    grid-row: 1;
}

.detail-header {
    margin-bottom: 35px;
}

.detail-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.detail-title {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 400;
}

.detail-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.detail-info-block {
    margin-bottom: 40px;
}

.detail-info-block h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.detail-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-services-grid div {
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
}

.detail-services-grid div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    background-color: var(--accent-gold);
}

.detail-approach-box {
    border-left: 1px solid var(--accent-gold);
    padding: 10px 0 10px 25px;
}

.detail-approach-box p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.detail-image-box {
    display: flex;
    justify-content: center;
    position: relative;
}

.detail-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background-color: var(--white);
}

/* Our Vision Section */
.vision-sec {
    background-color: var(--secondary-bg);
    text-align: center;
    padding: 120px 10%;
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.9;
    color: var(--white);
    font-weight: 400;
}

.vision-text span {
    color: var(--accent-gold);
    display: block;
    margin-top: 25px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Value Section */
.values-sec {
    padding: 120px 10%;
    background-color: var(--primary-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: transparent;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.value-card:hover {
    border-top-color: var(--accent-gold);
}

.value-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: rgba(197, 160, 89, 0.25);
    margin-bottom: 20px;
    font-weight: 400;
}

.value-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.value-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--secondary-bg);
    padding: 140px 10%;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 400;
}

.final-cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 160px;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto 45px auto;
    }
    
    .hero-visual {
        max-width: 300px;
        width: 100%;
    }
    
    .ventures-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .detail-grid, .venture-detail-sec:nth-child(even) .detail-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    
    .venture-detail-sec:nth-child(even) .detail-content,
    .venture-detail-sec:nth-child(even) .detail-image-box {
        grid-column: auto;
        grid-row: auto;
    }
    
    .brand-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 25px 8%;
    }
    
    .navbar.scrolled {
        padding: 15px 8%;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(3, 10, 22, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(197, 160, 89, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: var(--transition-smooth);
        z-index: 999;
        padding: 50px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-item a {
        font-size: 1rem;
        display: block;
        padding: 10px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .ventures-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .banner-word {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 80px 8%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .details-hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-logo-frame {
        width: 180px;
        height: 180px;
    }
    
    .hero-logo-img {
        width: 160px;
        height: 160px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .banner-word {
        font-size: 2.2rem;
    }
    
    .banner-sub {
        font-size: 1rem;
    }
    
    .detail-services-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-title {
        font-size: 1.8rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .detail-image-box {
        width: 100%;
    }
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    
    #particle-container,
    .deco-line,
    .animated-line-bar {
        display: none !important;
    }
    
    .hero-subtitle,
    .hero-title,
    .hero-tagline,
    .hero-description,
    .hero-buttons,
    .hero-visual,
    .venture-card,
    .banner-word,
    .banner-sub,
    .value-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
