/* Light.css - ASHIVA Light Sayfası Özel Stilleri */

/* Base Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Current Menu Link Style */
.menu-link.current {
    color: #215020 !important;
    font-weight: 600;
}

.header:hover .menu-link.current,
.header.scrolled .menu-link.current {
    color: #215020 !important;
}

/* Light Hero Section */
.light-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 80, 32, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(255, 215, 0, 0.3) 100%);
    z-index: 2;
}

/* Hero Light Rays Animation */
.hero-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: radial-gradient(circle at center, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    animation: lightPulse 4s ease-in-out infinite alternate;
}

@keyframes lightPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.light-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

/* Hero Glow Effect */
.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.light-hero .hero-title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.light-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.light-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Button */
.hero-cta {
    margin-top: 3rem;
}

.cta-glow {
    background: linear-gradient(45deg, #215020, #ffd700, #215020);
    background-size: 200% 200%;
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    }
}

.cta-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.8);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #215020;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-icon {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff9e6 100%);
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.intro-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.philosophy-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #215020, #ffd700, #215020);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-item:hover::before {
    opacity: 1;
}

.philosophy-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.philosophy-item h3 {
    font-size: 1.4rem;
    color: #215020;
    margin-bottom: 1rem;
    font-weight: 400;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

.philosophy-statement {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.philosophy-statement blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #215020;
    margin: 0;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
}

.philosophy-statement blockquote::before,
.philosophy-statement blockquote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.4);
    position: absolute;
    font-family: serif;
}

.philosophy-statement blockquote::before {
    top: -2rem;
    left: -1rem;
}

.philosophy-statement blockquote::after {
    bottom: -4rem;
    right: -1rem;
}

/* Indoor Lighting Section */
.indoor-lighting-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.lighting-showcase {
    margin-bottom: 6rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.showcase-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #215020, #ffd700, #215020);
    background-size: 200% 200%;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(255, 215, 0, 0.2) 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.showcase-item:hover .image-glow {
    opacity: 1;
}

.showcase-content h3 {
    font-size: 2.2rem;
    color: #215020;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.showcase-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.showcase-features span {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(33, 80, 32, 0.2);
    transition: all 0.3s ease;
}

.showcase-features span:hover {
    background: #215020;
    color: white;
    transform: translateY(-2px);
}

/* Lighting Grid */
.lighting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lighting-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.lighting-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.item-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lighting-item:hover .item-image img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(33, 80, 32, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lighting-item:hover .item-overlay {
    opacity: 1;
}

.item-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lighting-item:hover .item-glow {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.item-content {
    padding: 2rem;
}

.item-content h4 {
    font-size: 1.3rem;
    color: #215020;
    margin-bottom: 1rem;
    font-weight: 400;
}

.item-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Indoor Promise */
.indoor-promise {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.promise-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 20px;
}

.indoor-promise p {
    font-size: 1.3rem;
    font-style: italic;
    color: #215020;
    margin: 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Outdoor Lighting Section */
.outdoor-lighting-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #215020 0%, #2d6b2d 50%, #1a4019 100%);
    color: white;
    position: relative;
}

.outdoor-lighting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffd700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.outdoor-lighting-section .section-title {
    color: white;
}

.outdoor-lighting-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.outdoor-showcase {
    position: relative;
    z-index: 1;
}

.outdoor-hero-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outdoor-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.outdoor-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outdoor-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 215, 0, 0.3) 70%);
    animation: outdoorGlow 4s ease-in-out infinite;
}

@keyframes outdoorGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.outdoor-hero-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-weight: 400;
}

.outdoor-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Outdoor Features Grid */
.outdoor-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.outdoor-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.outdoor-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.outdoor-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    font-weight: 500;
}

.outdoor-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Consultancy Section */
.consultancy-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff9e6 100%);
}

.consultancy-header {
    text-align: center;
    margin-bottom: 6rem;
}

.consultancy-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #215020, #ffd700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #215020;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.step-glow {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-glow {
    opacity: 1;
    animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
}

/* Why ASHIVA Light Section */
.why-ashiva-light-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.why-header {
    text-align: center;
    margin-bottom: 5rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #215020, #ffd700, #215020);
    margin: 1rem auto;
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.why-content h4 {
    font-size: 1.3rem;
    color: #215020;
    margin-bottom: 1rem;
    font-weight: 500;
}

.why-content p {
    color: #666;
    line-height: 1.6;
}

.item-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.why-item:hover .item-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #215020 0%, #1a4019 50%, #2d6b2d 100%);
    position: relative;
    overflow: hidden;
}

.cta-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
}

.cta-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-highlight {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #ffd700 !important;
    margin-bottom: 3rem !important;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #215020;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(45deg, #ffed4a, #ffd700);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}


/* Final Quote Section */
.final-quote-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #215020 0%, #1a4019 100%);
    position: relative;
    overflow: hidden;
}

.final-quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: finalGlow 6s ease-in-out infinite;
}

@keyframes finalGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.quote-icon {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: quoteFloat 4s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.final-quote {
    font-size: 2rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.final-quote::before,
.final-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.5);
    position: absolute;
    font-family: serif;
}

.final-quote::before {
    top: -2rem;
    left: -2rem;
}

.final-quote::after {
    bottom: -3rem;
    right: -2rem;
}

.quote-signature {
    color: #ffd700;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
}

/* Mobile Menu Current State for Light */
.mobile-simple-link.current {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    font-weight: 600;
    border-left: 4px solid #215020;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .outdoor-hero-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .light-hero .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .final-quote {
        font-size: 1.8rem;
    }

    .lighting-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .light-hero {
        height: 80vh;
    }

    .light-hero .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .light-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .light-hero .hero-description {
        font-size: 1rem;
    }

    .philosophy-section,
    .indoor-lighting-section,
    .outdoor-lighting-section,
    .consultancy-section,
    .why-ashiva-light-section,
    .cta-section,
    .contact-section,
    .final-quote-section {
        padding: 5rem 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lighting-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consultancy-process {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .outdoor-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .showcase-item {
        padding: 2rem;
        border-radius: 20px;
    }

    .outdoor-hero-item {
        padding: 2rem;
    }

    .item-image {
        height: 200px;
    }

    .outdoor-hero-image {
        height: 300px;
    }

    .hero-glow-effect {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .light-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .final-quote {
        font-size: 1.5rem;
    }

    .philosophy-item {
        padding: 2rem 1.5rem;
    }

    .process-step {
        padding: 2.5rem 1.5rem;
    }

    .why-item {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
    }

    .showcase-item {
        padding: 1.5rem;
    }

    .outdoor-hero-item {
        padding: 1.5rem;
    }

    .hero-glow-effect {
        width: 300px;
        height: 300px;
    }

    .section-icon {
        font-size: 2rem;
    }

    .intro-icon {
        font-size: 2.5rem;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .quote-icon {
        font-size: 3rem;
    }
}