/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0f1c;
    overflow-x: hidden;
}

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

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f36 50%, #2a2f4a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 35s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 30%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 10%;
    animation-delay: 20s;
    animation-duration: 40s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Camera Logo */
.logo-container {
    margin-bottom: 3rem;
}

.camera-logo {
    position: relative;
    display: inline-block;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.camera-body {
    width: 120px;
    height: 80px;
    background: linear-gradient(145deg, #2a2f4a, #1a1f36);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 20px;
    box-shadow: 
        0 10px 30px rgba(244, 208, 63, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.camera-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #f4d03f, #d4ac0d);
    border-radius: 50%;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    animation: lensGlow 2s ease-in-out infinite alternate;
}

@keyframes lensGlow {
    0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 5px 25px rgba(244, 208, 63, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3); }
}

.lens-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #1a1f36;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lens-reflection {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: reflectionShine 3s ease-in-out infinite;
}

@keyframes reflectionShine {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.camera-flash {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 12px;
    height: 8px;
    background: linear-gradient(45deg, #f4d03f, #ffffff);
    border-radius: 2px;
    animation: flashBlink 4s ease-in-out infinite;
}

@keyframes flashBlink {
    0%, 90%, 100% { opacity: 0.6; }
    95% { opacity: 1; }
}

.camera-button {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 8px;
    height: 8px;
    background: #f4d03f;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Tripod */
.tripod {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 60px;
}

.tripod-mount {
    width: 20px;
    height: 10px;
    background: linear-gradient(145deg, #2a2f4a, #1a1f36);
    border-radius: 5px;
    position: absolute;
    bottom: 45px;
    z-index: 2;
    border: 1px solid rgba(244, 208, 63, 0.3);
}

.tripod-leg {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, #f4d03f, #d4ac0d);
    border-radius: 2px;
    transform-origin: top center;
    box-shadow: 0 2px 10px rgba(244, 208, 63, 0.3);
}

.tripod-leg-1 {
    transform: rotate(-30deg) translateX(-15px);
    animation: tripodSway 4s ease-in-out infinite;
}

.tripod-leg-2 {
    transform: rotate(30deg) translateX(15px);
    animation: tripodSway 4s ease-in-out infinite 1s;
}

.tripod-leg-3 {
    transform: rotate(0deg);
    animation: tripodSway 4s ease-in-out infinite 2s;
}

@keyframes tripodSway {
    0%, 100% { transform: rotate(var(--rotation)) translateX(var(--translate)); }
    50% { transform: rotate(calc(var(--rotation) + 2deg)) translateX(var(--translate)); }
}

/* Hero Text */
.hero-title {
    margin-bottom: 2rem;
}

.brand-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f4d03f 0%, #ffffff 50%, #f4d03f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: textShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(244, 208, 63, 0.3);
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* CTA Button */
.cta-button {
    position: relative;
    background: linear-gradient(135deg, #f4d03f 0%, #d4ac0d 100%);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1f36;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.5);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f4d03f 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing {
    background: rgba(26, 31, 54, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(244, 208, 63, 0.2);
    border-color: rgba(244, 208, 63, 0.3);
}

.pricing-card.featured {
    border: 2px solid #f4d03f;
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.3);
    scale: 1.05;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f4d03f, #d4ac0d);
    color: #1a1f36;
    padding: 0.5rem 2rem;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.plan-icon {
    color: #f4d03f;
    margin-bottom: 1rem;
    animation: iconFloat 2s ease-in-out infinite;
}

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

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #f4d03f;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f4d03f;
}

.plan-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.card-content {
    position: relative;
    z-index: 2;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 0.5rem;
    background: rgba(244, 208, 63, 0.05);
    border-radius: 8px;
    border-bottom-color: rgba(244, 208, 63, 0.2);
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #f4d03f;
    color: #1a1f36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.select-plan-btn {
    width: 100%;
    background: linear-gradient(135deg, #f4d03f 0%, #d4ac0d 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1f36;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.4);
}

/* Expanded Content */
.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    opacity: 0;
}

.pricing-card.expanded .expanded-content {
    max-height: 1000px;
    opacity: 1;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.expanded-features h4 {
    color: #f4d03f;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.expanded-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.expanded-feature:hover {
    background: rgba(244, 208, 63, 0.05);
    border-color: rgba(244, 208, 63, 0.2);
    transform: translateX(5px);
}

.expanded-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.feature-text h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    /* cursor: pointer; */
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 208, 63, 0.3);
    box-shadow: 0 15px 30px rgba(244, 208, 63, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: contactIconFloat 3s ease-in-out infinite;
}

@keyframes contactIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.contact-card p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #f4d03f 0%, #d4ac0d 100%);
    color: #1a1f36;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.4);
}

/* Footer */
.footer {
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #f4d03f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f4d03f;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(244, 208, 63, 0.1);
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4d03f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f4d03f;
    color: #1a1f36;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 208, 63, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4d03f 0%, #d4ac0d 100%);
    border: none;
    border-radius: 50%;
    color: #1a1f36;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(244, 208, 63, 0.3);
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.5);
}

.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 54, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(244, 208, 63, 0.3);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-bar-item:hover {
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-2px);
}

.contact-bar-icon {
    font-size: 1.2rem;
    animation: contactBarPulse 2s ease-in-out infinite;
}

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

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

.fade-in {
    animation: fadeInUp 0.8s ease both;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        scale: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .sticky-contact-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .contact-bar-item {
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        bottom: 120px;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .camera-body {
        width: 100px;
        height: 70px;
    }
    
    .camera-lens {
        width: 40px;
        height: 40px;
    }
    
    .lens-inner {
        width: 25px;
        height: 25px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .contact-bar-item span {
        font-size: 0.8rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1f36;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f4d03f, #d4ac0d);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d4ac0d, #f4d03f);
}

/* Focus Styles for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #f4d03f;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .animated-background,
    .scroll-to-top,
    .sticky-contact-bar {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}