/* Custom CSS for Arctic Ice Factory */

/* Root Variables - Modern Teal/Emerald Theme */
:root {
    --primary-color: #10b981;
    --secondary-color: #6b7280;
    --accent-color: #8b5cf6;
    --success-color: #059669;
    --info-color: #0891b2;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-color: #f9fafb;
    --dark-color: #1f2937;
    --ice-teal: #ecfdf5;
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    --modern-gradient: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%);
    --glass-gradient: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navigation Styles */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    background: rgba(249, 250, 251, 0.95) !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 2px 20px rgba(16, 185, 129, 0.1);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(16, 185, 129, 0.15);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

/* Enhanced Brand Styling */
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transition: left 0.5s;
}

.navbar-brand:hover::before {
    left: 100%;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-color) !important;
}

.navbar-brand img {
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.navbar-brand:hover img {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
}

/* Enhanced Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0.25rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--modern-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 25px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--modern-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.nav-link.active {
    color: white !important;
    background: var(--modern-gradient);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.nav-link.active::before {
    left: 0;
}

/* Enhanced Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--modern-gradient);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.navbar-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

/* Animated Hamburger Menu */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Enhanced Mobile Menu */
.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .nav-link {
        text-align: center;
        margin: 0.25rem 0;
        background: rgba(0, 123, 255, 0.05);
        border: 1px solid rgba(0, 123, 255, 0.1);
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, var(--primary-color), #667eea);
        border-color: transparent;
    }
}

/* Logo Animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.navbar-brand img {
    animation: logoFloat 3s ease-in-out infinite;
}

.navbar-brand:hover img {
    animation: none;
}

/* Dropdown Enhancement (if needed for future) */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080&q=80') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
    display: flex;
    align-items: center;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Card Styles */
.card {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.product-card {
    border-radius: 15px;
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand span {
        display: none;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

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

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-primary {
    background: var(--ice-gradient);
}

.border-radius-lg {
    border-radius: 15px;
}

.shadow-lg-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-lg-hover:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Ice Crystal Animation */
.ice-crystal {
    position: relative;
    overflow: hidden;
}

.ice-crystal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
}

/* Enhanced Navigation Ripple Effects and Animations */
.nav-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: nav-ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes nav-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Initial Animation States for Navbar */
.navbar-initial {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-link-initial {
    opacity: 0;
    transform: translateY(-20px);
}

/* Navbar Glow Effect */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.1) 25%, 
        rgba(16, 185, 129, 0.2) 50%, 
        rgba(16, 185, 129, 0.1) 75%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.navbar:hover::before {
    opacity: 1;
}

/* Enhanced Mobile Menu Animation */
@media (max-width: 767.98px) {
    .navbar-brand span {
        font-size: 1.2rem;
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Navbar Shadow Animation */
.navbar.scrolled {
    animation: shadowPulse 3s ease-in-out infinite alternate;
}

@keyframes shadowPulse {
    0% {
        box-shadow: 0 4px 30px rgba(16, 185, 129, 0.15);
    }
    100% {
        box-shadow: 0 8px 40px rgba(16, 185, 129, 0.25);
    }
}

/* Navigation Link Magnetic Effect */
.nav-link {
    position: relative;
    z-index: 2;
}

.nav-link:hover {
    animation: magneticPull 0.3s ease-out;
}

@keyframes magneticPull {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
    100% {
        transform: translateY(-2px) scale(1.05);
    }
}

/* Brand Logo Pulse Effect */
.navbar-brand:hover img {
    animation: logoPulse 0.6s ease-in-out;
}

@keyframes logoPulse {
    0%, 100% {
        transform: rotate(5deg) scale(1.1);
    }
    50% {
        transform: rotate(5deg) scale(1.15);
    }
}

/* Navbar Backdrop Blur Enhancement */
.navbar.scrolled {
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

/* Mobile Menu Enhanced Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        border: 2px solid rgba(16, 185, 129, 0.1);
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(249, 250, 251, 0.98) 100%);
    }
    
    .nav-link {
        backdrop-filter: blur(10px);
        border: 1px solid rgba(16, 185, 129, 0.1);
        margin: 0.3rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        background: var(--modern-gradient);
    }
}
/* Custom Logo Styling */
.logo-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.navbar-brand:hover .logo-icon svg {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.4));
}

/* Logo Animation */
@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo-icon svg:hover {
    animation: logoSpin 2s ease-in-out;
}

/* Logo Glow Effect */
.logo-icon svg g {
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-icon svg g {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Responsive Logo */
@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 1rem;
    }
    
    .logo-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Footer Logo Styling */
.footer .logo-icon svg {
    filter: drop-shadow(0 1px 2px rgba(16, 185, 129, 0.3));
}

/* Logo Pulse Animation for Footer */
@keyframes logoPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

footer .logo-icon svg:hover {
    animation: logoPulse 1.5s ease-in-out infinite;
}
/* Video Section Styling */
.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.video-placeholder {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.video-placeholder:hover::before {
    left: 100%;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder .fa-play-circle {
    transition: all 0.3s ease;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.video-placeholder:hover .fa-play-circle {
    transform: scale(1.1);
    color: #f0f0f0;
}

.video-feature {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.video-feature:hover {
    background: rgba(16, 185, 129, 0.05);
    transform: translateY(-3px);
}

.video-feature i {
    transition: all 0.3s ease;
}

.video-feature:hover i {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-placeholder {
        height: 250px !important;
    }
    
    .video-placeholder h4 {
        font-size: 1.2rem;
    }
    
    .video-placeholder .fa-play-circle {
        font-size: 2.5rem !important;
    }
}

/* Video Loading Animation */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-loading.spinning {
    animation: spin 1s linear infinite;
}

/* Video Controls Enhancement */
video::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(139, 92, 246, 0.9));
}

/* YouTube Embed Responsive */
.youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
/* Gallery Section Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: all 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* White Background Video Styling */
.video-placeholder {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.video-placeholder:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.video-overlay {
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-overlay {
    background: rgba(255, 255, 255, 0.9) !important;
}

.play-button {
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button i {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}

/* Clean White Sections */
.bg-clean {
    background: #ffffff;
}

.bg-light-clean {
    background: #f8f9fa;
}

/* Hero Text Updates */
.hero-section h1,
.hero-section p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Button Updates for White Background */
.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Card Enhancements */
.card {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

/* Image Hover Effects */
.img-hover {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 10px;
}

.img-hover:hover {
    transform: scale(1.02);
}

.img-hover img {
    transition: all 0.3s ease;
}

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

/* Section Spacing */
.section-padding {
    padding: 80px 0;
}

/* Clean Typography */
.text-clean {
    color: #374151;
    line-height: 1.7;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .gallery-item img {
        height: 250px;
    }
    
    .video-placeholder {
        height: 250px !important;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}