/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* CSS Variables - Following Color Guidelines */
:root {
    --color-deep-maroon: #7F1F32;
    --color-golden-saffron: #E49B2E;
    --color-soft-beige: #F8F1EA;
    --color-dark-brown: #4C1B1B;
    --color-charcoal: #333333;
    
    /* Typography */
    --font-primary: 'Jost', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(127, 31, 50, 0.1);
    --shadow-medium: 0 8px 30px rgba(127, 31, 50, 0.15);
    --shadow-heavy: 0 15px 50px rgba(127, 31, 50, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-deep-maroon) 0%, var(--color-dark-brown) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-golden-saffron) 0%, #d4881a 100%);
    --gradient-light: linear-gradient(135deg, var(--color-soft-beige) 0%, #f0e6d6 100%);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-soft-beige);
    color: var(--color-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-deep-maroon);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom Colors */
.text-saffron { color: var(--color-golden-saffron) !important; }
.text-maroon { color: var(--color-deep-maroon) !important; }
.text-charcoal { color: var(--color-charcoal) !important; }
.bg-maroon { background-color: var(--color-deep-maroon) !important; }
.bg-saffron { background-color: var(--color-golden-saffron) !important; }

/* Navigation */
.glass-nav {
    background: rgba(127, 31, 50, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(127, 31, 50, 0.98);
    box-shadow: var(--shadow-medium);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.brand-name {
    color: white;
}

.brand-suffix {
    color: var(--color-golden-saffron);
    font-size: 0.9em;
}

.star-icon {
    animation: pulse 2s infinite;
}

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

.nav-link-custom {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    background: rgba(228, 155, 46, 0.2);
    color: var(--color-golden-saffron) !important;
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-primary-custom::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.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-custom {
    border: 2px solid var(--color-deep-maroon);
    color: var(--color-deep-maroon);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--color-deep-maroon);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-cta {
    background: white;
    color: var(--color-deep-maroon);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--color-golden-saffron);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-light);
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(228, 155, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 31, 50, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(228, 155, 46, 0.1);
    border: 1px solid var(--color-golden-saffron);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--color-deep-maroon);
    font-weight: 600;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-main {
    display: block;
    color: var(--color-deep-maroon);
}

.title-location {
    display: block;
    color: var(--color-golden-saffron);
    font-family: var(--font-script);
    font-size: 0.8em;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-charcoal);
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    opacity: 0.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.specialties-list {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.specialties-title {
    color: var(--color-deep-maroon);
    font-weight: 600;
    margin-bottom: 1rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-deep-maroon);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-deep-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-deep-maroon);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Preview Section */
.about-preview-section {
    padding: var(--section-padding) 0;
}

.about-image-grid {
    position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(127, 31, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.1;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -10px;
    animation: float 4s ease-in-out infinite reverse;
}

.stats-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-golden-saffron);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-deep-maroon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-title {
    color: var(--color-deep-maroon);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(228, 155, 46, 0.1);
    color: var(--color-deep-maroon);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(228, 155, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 155, 46, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Event Types Section */
.event-types-section {
    padding: var(--section-padding) 0;
    background: var(--color-soft-beige);
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(127, 31, 50, 0.8), rgba(228, 155, 46, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-deep-maroon);
    font-size: 2rem;
}

.event-content {
    padding: 30px;
}

.event-title {
    color: var(--color-deep-maroon);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-feature {
    background: rgba(127, 31, 50, 0.1);
    color: var(--color-deep-maroon);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 0;
    background: white;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid var(--color-deep-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 25px;
    color: var(--color-deep-maroon);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--color-deep-maroon);
    color: white;
    transform: scale(1.1);
}

.step-title {
    color: var(--color-deep-maroon);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-soft-beige);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-image {
    margin-right: 15px;
}

.client-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.client-name {
    color: var(--color-deep-maroon);
    font-weight: 600;
    margin-bottom: 5px;
}

.client-event {
    color: var(--color-golden-saffron);
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    color: var(--color-golden-saffron);
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--color-charcoal);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--color-golden-saffron);
    font-size: 2rem;
    opacity: 0.3;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(228, 155, 46, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: white;
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: var(--color-dark-brown);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.brand-title {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 15px;
}

.brand-tagline {
    color: var(--color-golden-saffron);
    font-weight: 500;
    margin-bottom: 15px;
}

.brand-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(228, 155, 46, 0.2);
    border: 1px solid var(--color-golden-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-golden-saffron);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-golden-saffron);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-golden-saffron);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--color-golden-saffron);
    opacity: 1;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.contact-item i {
    color: var(--color-golden-saffron);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
}

.copyright,
.tagline {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .cta-content {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .event-card,
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .stats-container {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 25px;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .client-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .process-step{
        padding: 20px 10px;
        margin-bottom: 15px;

    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform 0.3s ease;
}

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

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

::-webkit-scrollbar-track {
    background: var(--color-soft-beige);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--color-deep-maroon);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .floating-card,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}