/* Root Variables */
:root {
    --primary-color: #e31e24;
    --primary-hover: #cc1a1f;
    --dark-bg: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-highlight: #f0f0f0;
    --gradient-primary: linear-gradient(135deg, #e31e24 0%, #cc1a1f 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #0B0B1A;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(30, 30, 60, 0.5) 0%,
        rgba(11, 11, 26, 0.8) 50%,
        rgba(11, 11, 26, 1) 100%
    );
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(227, 30, 36, 0.05) 0%,
            transparent 40%
        ),
        linear-gradient(-45deg, 
            rgba(30, 63, 90, 0.05) 0%,
            transparent 40%
        );
    z-index: -1;
}

/* Navigation */
.main-nav {
    background: rgba(11, 11, 26, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(227, 30, 36, 0.1);
}

/* Bento Grid Layout */
.bento-section {
    padding: 4rem 2rem;
    width: 100%;
}

.bento-grid {
    display: grid;
    gap: 2rem;
    padding: 1rem;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
}

.bento-item {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(227, 30, 36, 0.15);
    border-color: rgba(227, 30, 36, 0.3);
}

/* Projects Page Specific Styles */
.bento-section h1 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-highlight);
}

.bento-section h1 strong {
    color: var(--primary-color);
}

/* Project Categories */
.project-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto 3rem;
    max-width: 1200px;
    padding: 0 1rem;
}

.category-btn {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    pointer-events: none;
}

.category-btn:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateY(-2px);
}

.category-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* Projects Grid */
.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Project Cards */
.project-showcase {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
}

.project-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.project-showcase img.loaded {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-info h3 {
    color: var(--text-highlight);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Project Card Hover Effects */
.project-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(227, 30, 36, 0.3);
}

.project-showcase:hover img {
    transform: scale(1.1);
}

.project-showcase:hover .project-info {
    transform: translateY(0);
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.project-showcase {
    animation: fadeIn 0.5s ease-out;
}

.project-showcase[style*="display: none"] {
    animation: fadeOut 0.3s ease-out forwards;
}

.project-showcase[style*="display: block"] {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Loading State */
.projects-showcase-grid.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .projects-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .project-categories {
        flex-direction: row;
        overflow-x: auto;
        padding: 1rem;
        margin: 1rem 0 2rem;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .bento-section h1 {
        font-size: 2.5rem;
        margin: 2rem 0;
    }
}

/* Button and Link Styles */
button, 
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

button:focus,
.btn:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* Utility Classes */
.text-highlight {
    color: var(--text-highlight);
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--text-secondary);
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Footer Styles */
.main-footer {
    background: rgba(11, 11, 26, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--text-highlight);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Testimonial Author Styles */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-info h4 {
    color: var(--text-highlight);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero section text sizing */
.hero-main h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-main h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Service items content */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer adjustments */
.footer-content {
    max-width: 2000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* Section titles */
.bento-section h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Add some breathing room between sections */
section:not(:last-child) {
    margin-bottom: 4rem;
}

/* Responsive text adjustments */
@media (max-width: 1600px) {
    .hero-main h1 {
        font-size: 3.5rem;
    }
    
    .hero-main h2 {
        font-size: 2.5rem;
    }
    
    .bento-section h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .hero-main h1 {
        font-size: 3rem;
    }
    
    .hero-main h2 {
        font-size: 2rem;
    }
    
    .bento-section h2 {
        font-size: 2.4rem;
    }
}

/* Add these new styles for services page */

/* Service Category Styles */
.service-category {
    padding: 3rem;
    margin-bottom: 2rem;
    background: rgba(26, 26, 46, 0.95);
}

.service-category h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-category li {
    color: var(--text-primary);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-category li:before {
    content: '→';
    color: var(--primary-color);
}

.service-category .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.service-category .cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* Add subtle animation to the background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add a subtle animated gradient to the hero section */
.hero-main::before {
    background: linear-gradient(
        135deg,
        rgba(227, 30, 36, 0.1) 0%,
        rgba(30, 63, 90, 0.1) 50%,
        rgba(227, 30, 36, 0.1) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Add these styles for the clickable address */
.address-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: var(--primary-color);
}

.address-link .fa-external-link-alt {
    font-size: 0.8em;
    opacity: 0.7;
}

.address-link:hover .fa-external-link-alt {
    opacity: 1;
    transform: translateX(2px);
}

/* Business Objectives Section */
.objectives-section {
    margin: 4rem 0;
}

.objectives-main {
    padding: 4rem !important;
    color: var(--text-highlight);
    position: relative;
    overflow: hidden;
}

.objectives-main h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-highlight);
}

.objectives-main h2 strong {
    color: var(--primary-color);
}

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

.objective-item {
    background: rgba(15, 15, 35, 0.85);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.objective-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(15, 15, 35, 0.95);
}

.objective-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.objective-item h3 {
    color: var(--text-highlight);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.objective-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .objectives-main {
        padding: 2rem !important;
    }
}

/* Add these contact page specific styles */
.contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Quick Contact Cards */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem !important;
}

.contact-card {
    background: rgba(15, 15, 35, 0.95);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-highlight);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* Contact Form Styling */
.contact-form-container {
    padding: 3rem !important;
}

.contact-form {
    display: grid;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button i {
    font-size: 1.1rem;
}

/* Add focus and error states */
.form-group.focused input,
.form-group.focused textarea {
    border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
}

/* Business Hours Styling */
.business-hours {
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-section ul {
    list-style: none;
    padding: 0;
}

.hours-section li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-section li span {
    color: var(--text-highlight);
    font-weight: 500;
}

.emergency-section {
    text-align: center;
    padding: 2rem;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(227, 30, 36, 0.2);
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.emergency-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* Error Message Styling */
.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

/* Map Container Styling */
.map-section {
    margin-top: 4rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .quick-contact {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem !important;
    }
}

.hero-landing {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.landing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    animation: zoomEffect 20s infinite alternate ease-in-out;
}

.landing-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.landing-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.landing-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@keyframes zoomEffect {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-content h1 {
        font-size: 3rem;
    }
    
    .landing-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}