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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 25%, #4a1a1a 50%, #2d1b1b 75%, #1a1a1a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 120px;
}

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

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #ffffff;
    font-size: 0.75rem;
}

.contact-item i {
    color: #ff4444;
    font-size: 0.7rem;
}

.contact-item span {
    margin-right: 0.8rem;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 0.3rem;
}

.social-icons a {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    padding: 0.3rem 0 0rem;
    background: rgba(0, 0, 0, 0.8);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.logo h1 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.core-text {
    color: #ff4444;
}

.new-badge {
    color: #ff4444;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.nav a:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-1px);
}

.nav a.active {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.15);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    color: #ffffff;
    font-weight: 500;
}

.btn-loyalty {
    background: #ff4444;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-loyalty:hover {
    background: #ff6666;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 1rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-left {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4444;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-left h2 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.brand-name {
    color: #ff4444;
}

.hero-left h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-highlights {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.highlight i {
    color: #ff4444;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: #ff4444;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff6666;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff4444;
    color: white;
    transform: translateY(-2px);
}

/* Hero Right Card */
.hero-right {
    display: flex;
    justify-content: center;
}

.info-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: 2rem;
    max-width: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-svg {
    width: 50px;
    height: 50px;
    display: block;
    flex-shrink: 0;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.card-title h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.card-title span {
    color: #cccccc;
    font-size: 0.9rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.feature i {
    color: #ff4444;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Default services grid - for Services.html */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Scrollable services grid - for index.html */
.services-container .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
    flex: 1;
}


/* Default service card - for Services.html */
.service-card {
    width: 100%;
}

/* Scrollable service card - for index.html */
.services-container .service-card {
    flex: 0 0 280px;
    min-width: 280px;
}

/* Scrollbar styles for scrollable services */
.services-container .services-grid::-webkit-scrollbar {
    height: 8px;
}

.services-container .services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.services-container .services-grid::-webkit-scrollbar-thumb {
    background: #ff4444;
    border-radius: 4px;
}

.services-container .services-grid::-webkit-scrollbar-thumb:hover {
    background: #e63939;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.scroll-btn:hover {
    background: #ff4444;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 68, 68, 0.4);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.scroll-btn:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 68, 68, 0.5);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Service image styles removed - no longer needed */

.service-content {
    padding: 1.2rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #ff4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features .feature {
    margin-bottom: 0.8rem;
}

.btn-service {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #ff4444;
    color: white;
    transform: translateY(-2px);
}

/* Quality Section */
.quality {
    padding: 6rem 0;
    text-align: center;
}

.quality-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.quality-content p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.quality-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feedback-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-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;
    transition: all 0.3s ease;
}

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

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.customer-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.customer-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Pre-Footer */
.pre-footer {
    padding: 4rem 0;
    text-align: center;
}

.pre-footer-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pre-footer-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating .stars {
    margin-bottom: 0;
}

.rating span {
    color: #ffffff;
    font-weight: 600;
}

.commitment {
    color: #cccccc;
    font-size: 1rem;
}

.commitment i {
    color: #ffd700;
    margin: 0 0.5rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo h3 .core-text {
    color: #ff4444 !important;
    font-size: 1.2em;
}

.footer-logo span {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-left p {
    color: #cccccc;
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

.footer-middle h4,
.footer-right h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-middle a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-middle a:hover {
    color: #ff4444;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-6 {
    margin-bottom: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.text-red-400 {
    color: #ff4444;
}

.mr-3 {
    margin-right: 0.75rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray-400 {
    color: #9ca3af;
}

.font-medium {
    font-weight: 500;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.contact-info p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ffffff;
    margin: 0;
}

.contact-info i {
    color: #ff4444;
    width: 16px;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.location-detail {
    color: #ffffff;
    margin-left: 0;
    font-size: 0.9rem;
}

.business-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.business-hours h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #ffffff;
}

.hours-item .day {
    color: #ff4444;
    font-weight: 600;
}

.hours-item .time {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #999999;
    font-size: 0.8rem;
    margin: 0;
}



/* Enhanced Page Styling */

/* Mission and Vision Sections */
.mission-section, .vision-section {
    padding: 6rem 0;
    position: relative;
}

.mission-section {
    background: rgba(0, 0, 0, 0.3);
}

.vision-section {
    background: rgba(74, 26, 26, 0.2);
}

.mission-content, .vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-content {
    grid-template-columns: 1fr 1fr;
}

.mission-text h2, .vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mission-text p, .vision-text p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
}

.mission-icon, .vision-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mission-icon i, .vision-icon i {
    color: white;
    font-size: 3rem;
    z-index: 1;
    position: relative;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.core-values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.value-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;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(255, 68, 68, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.value-icon i {
    color: white;
    font-size: 2rem;
    z-index: 1;
    position: relative;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: rgba(74, 26, 26, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Page Hero Sections */
.about-hero, .services-hero, .loyalty-hero, .contact-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(74, 26, 26, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero {
    padding: 3rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(74, 26, 26, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero h1, .services-hero h1, .loyalty-hero h1, .contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pricing-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-hero p, .services-hero p, .loyalty-hero p, .contact-hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-hero p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Card Styling */
.service-card, .loyalty-card, .value-card, .contact-card, .points-card, .tier-card, .faq-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }

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

.service-card:hover, .loyalty-card:hover, .value-card:hover, .contact-card:hover, .points-card:hover, .tier-card:hover, .faq-item:hover {
    border-color: rgba(255, 68, 68, 0.5);
}

/* Enhanced Pricing Cards */
.pricing-category {
    position: relative;
}

.pricing-category:hover {
    border-color: rgba(255, 68, 68, 0.3);
}

.pricing-item {
    position: relative;
}

.pricing-item:hover {
    background: rgba(255, 68, 68, 0.1);
}

/* Enhanced Form Styling */
.contact-form {
    position: relative;
    overflow: hidden;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff4444;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

/* Enhanced Button Styling */
.btn-primary, .btn-secondary, .btn-service {
    position: relative;
    overflow: hidden;
}

.btn-primary:hover, .btn-secondary:hover, .btn-service:hover {
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.4);
}

/* Process Section */
.process {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Enhanced Process Steps */
.step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #ff4444, transparent);
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff4444, #e63939);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}


/* Pricing Notice */
.pricing-notice {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-notice p {
    color: #cccccc;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Pricing Structure */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-category {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-category:hover {
    border-color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.2);
}

.pricing-category h3 {
    color: #ff4444;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 68, 68, 0.3);
    padding-bottom: 0.8rem;
}

.pricing-subcategory {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff4444;
}

.pricing-subcategory h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.pricing-details {
    margin-bottom: 0.8rem;
}

.pricing-details p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-details p:first-child {
    color: #ff4444;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-list {
    margin-top: 0.5rem;
}

.pricing-list p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-list p:last-child {
    border-bottom: none;
}

/* Special styling for different service types */
.pricing-category:nth-child(1) h3::before {
    content: "🖨️ ";
}

.pricing-category:nth-child(2) h3::before {
    content: "📄 ";
}

.pricing-category:nth-child(3) h3::before {
    content: "💌 ";
}

.pricing-category:nth-child(4) h3::before {
    content: "🆔 ";
}

.pricing-category:nth-child(5) h3::before {
    content: "🖼️ ";
}

.pricing-category:nth-child(6) h3::before {
    content: "📸 ";
}

.pricing-category:nth-child(7) h3::before {
    content: "💰 ";
}

.pricing-category:nth-child(8) h3::before {
    content: "✏️ ";
}

.pricing-category:nth-child(9) h3::before {
    content: "💻 ";
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-category {
        padding: 1.2rem;
    }
    
    .pricing-category h3 {
        font-size: 1.2rem;
    }
}


/* Enhanced Icons */
.service-icon, .loyalty-icon, .value-icon, .contact-icon, .points-icon {
    position: relative;
    overflow: hidden;
}

/* New Loyalty Program Styles */
.welcome-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    text-align: center;
}

.welcome-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-it-works {
    padding: 2rem 0;
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
}

.how-it-works-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.step-card ul {
    text-align: left;
    color: #cccccc;
    padding-left: 1.5rem;
}

.step-card li {
    margin-bottom: 0.5rem;
}

.loyalty-cards-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    text-align: center;
}

.loyalty-cards-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.loyalty-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.card-image {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card-image:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
}

.loyalty-card-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card-image p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Sign Up Form Section */
.signup-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
}

.signup-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.signup-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.signup-content > p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.signup-form {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

.form-group input::placeholder {
    color: #999999;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    gap: 0.8rem;
}

.checkbox-text {
    color: #ffffff;
}

.highlight-text {
    color: #ff4444;
    font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 68, 68, 0.5);
    border-radius: 3px;
    margin-right: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff4444;
    border-color: #ff4444;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.checkbox-label input[type="checkbox"]:not(:checked) + .checkmark::after {
    display: none;
}


.signup-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.signup-btn i {
    font-size: 1.2rem;
}

.signup-benefits {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.signup-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.benefit-item i {
    color: #ff4444;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Terms Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}


.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.modal-body {
    padding: 2rem;
}

.reminders-modal-list {
    margin-bottom: 2rem;
}

.reminder-modal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 8px;
}

.reminder-modal-item i {
    color: #ff4444;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.reminder-modal-item p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-checkbox {
    padding: 1.5rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 8px;
    margin-top: 1rem;
}

.modal-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.modal-checkbox-label input[type="checkbox"] {
    display: none;
}

.modal-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 68, 68, 0.5);
    border-radius: 3px;
    margin-right: 0.8rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-checkbox-label input[type="checkbox"]:checked + .modal-checkmark {
    background: #ff4444;
    border-color: #ff4444;
}

.modal-checkbox-label input[type="checkbox"]:checked + .modal-checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.modal-checkbox-label input[type="checkbox"]:not(:checked) + .modal-checkmark::after {
    display: none;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    justify-content: flex-end;
}

.modal-footer button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.modal-footer .btn-secondary:hover {
    background: rgba(255, 68, 68, 0.3);
}

.modal-footer .btn-primary {
    background: #ff4444;
    color: white;
}

.modal-footer .btn-primary:hover {
    background: #ff6666;
}

.modal-footer .btn-primary:disabled {
    background: rgba(255, 68, 68, 0.3);
    cursor: not-allowed;
}

/* Loyalty Card Gallery Section */
.loyalty-gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
    text-align: center;
}

.loyalty-gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.loyalty-gallery-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
}

.gallery-container {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex: 0 0 100%;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 68, 68, 0.2));
    border: 2px dashed rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ff4444;
    text-align: center;
    padding: 2rem;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.gallery-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 68, 68, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #ff4444;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 68, 68, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #ff4444;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: rgba(255, 68, 68, 0.6);
}

.referral-bonus {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
}

.referral-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.referral-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.referral-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
}

.referral-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.referral-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.referral-card p {
    color: #cccccc;
    line-height: 1.6;
}

.quick-reminders {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
}

.reminders-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.reminders-list {
    max-width: 800px;
    margin: 0 auto;
}

.reminder-item {
    display: flex;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.reminder-item:hover {
    border-color: #ff4444;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.2);
}

.reminder-item i {
    color: #ff4444;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.reminder-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.loyalty-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Mobile Responsive for New Loyalty Sections */
@media (max-width: 768px) {
    .welcome-content h2,
    .how-it-works-content h2,
    .loyalty-cards-section h2,
    .referral-content h2,
    .reminders-content h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .loyalty-cards-grid,
    .referral-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-carousel {
        padding: 0 2rem;
    }
    
    .gallery-img {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 0.5rem;
    }
    
    .next-btn {
        right: 0.5rem;
    }
    
    .step-card,
    .referral-card {
        padding: 1.5rem;
    }
    
    .signup-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .signup-form {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .step-number,
    .referral-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reminder-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reminder-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Service Design Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 25%, #4a1a1a 50%, #2d1b1b 75%, #1a1a1a 100%);
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 68, 68, 0.1);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close {
    color: #ff4444;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 2rem;
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    color: #cccccc;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #ff4444;
    border-bottom-color: #ff4444;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-form h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 68, 68, 0.3);
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4444;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff5555 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}





/* Enhanced Testimonials */
.testimonial-card {
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255, 68, 68, 0.2);
    font-family: serif;
}

.testimonial-card:hover::after {
    color: rgba(255, 68, 68, 0.4);
}

/* Enhanced Map Placeholder */
.map-placeholder {
    position: relative;
    overflow: hidden;
}

/* Enhanced Tier Cards */
.tier-card.featured {
    position: relative;
    overflow: hidden;
}

.tier-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.1), transparent, rgba(255, 68, 68, 0.1));
}

/* Enhanced Stars */
.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Enhanced Badges */
.offer-badge, .tier-badge {
    display: inline-block;
}

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

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

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

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

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

/* Page Load Animation */
body {
    animation: pageSlideIn 0.6s ease-out;
}

/* Navigation Link Styles (No Hover Animations) */
nav a {
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff4444;
}

/* Button Transition Effects */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before, .btn-secondary::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 ease;
}

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

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

/* Section Animation Classes */
.section-animate {
    animation: slideInFromLeft 0.8s ease-out;
}

.section-animate-alt {
    animation: slideInFromRight 0.8s ease-out;
}

.section-animate-delay {
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.section-animate-delay-alt {
    animation: slideInFromRight 0.8s ease-out 0.2s both;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
    text-decoration: none;
}

.chat-icon:hover {
    background: #e63939;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 68, 68, 0.4);
    color: white;
    text-decoration: none;
}

.chat-icon i {
    color: white;
}

/* Return to Top Button */
.return-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.return-to-top:hover {
    background: #e63939;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 68, 68, 0.4);
}

.return-to-top.show {
    display: flex;
}

/* Why Choose TechPrint Core Section */
.why-choose {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
    flex: 1;
}

.features-grid::-webkit-scrollbar {
    height: 8px;
}

.features-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.features-grid::-webkit-scrollbar-thumb {
    background: #ff4444;
    border-radius: 4px;
}

.features-grid::-webkit-scrollbar-thumb:hover {
    background: #e63939;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 250px;
    min-width: 250px;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 68, 68, 0.3);
}

.mission-icon, .vision-icon {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

/* Responsive Mission & Vision */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .mission-vision-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .mission-card p, .vision-card p {
        font-size: 1rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-left h3 {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .services-container .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .section-header h2,
    .quality-content h2,
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile-specific enhancements */
    .about-hero h1, .services-hero h1, .pricing-hero h1, .loyalty-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }image.png
    
    .step::after {
        display: none; /* Hide connecting lines on mobile */
    }
    
    /* Process Section Responsive */
    .process {
        padding: 2rem 0;
    }
    
    .process h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    /* Mission and Vision responsive */
    .mission-content, .vision-content, .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-icon, .vision-icon {
        width: 100px;
        height: 100px;
    }
    
    .mission-icon i, .vision-icon i {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Additional Mobile Enhancements */
@media (max-width: 480px) {
    .about-hero h1, .services-hero h1, .pricing-hero h1, .loyalty-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid, .loyalty-grid, .contact-grid, .points-grid, .tiers-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-container {
        gap: 0.5rem;
    }
    
    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .feature-card {
        flex: 0 0 220px;
        min-width: 220px;
    }
    
    .why-choose h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .services-container {
        gap: 0.3rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .service-card {
        width: 100%;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .scroll-left {
        left: -15px;
    }
    
    .scroll-right {
        right: -15px;
    }
    
    .features-container {
        gap: 0.3rem;
    }
    
    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .feature-card {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .why-choose h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .hero-buttons, .quality-buttons, .loyalty-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-service {
        width: 100%;
        max-width: 300px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .hero-buttons, .quality-buttons, .loyalty-buttons {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .service-card, .loyalty-card, .value-card, .contact-card, .points-card, .tier-card, .faq-item {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .service-card, .loyalty-card, .value-card, .contact-card, .points-card, .tier-card, .faq-item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Mobile Performance Optimization */
@media (max-width: 768px) {
    .service-card, .loyalty-card, .value-card, .contact-card, .points-card, .tier-card, .faq-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .service-card:hover, .loyalty-card:hover, .value-card:hover, .contact-card:hover, .points-card:hover, .tier-card:hover, .faq-item:hover {
        transform: none;
    }
    
    .btn-primary:hover, .btn-secondary:hover, .btn-service:hover {
        transform: none;
    }
    
    .social-icons a:hover, .social-links a:hover {
        transform: none;
    }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 7px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hide Top Bar on Mobile */
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 0.2rem 0 0rem;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .header-content {
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        display: flex;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .logo {
        flex-shrink: 0;
        z-index: 1001;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        white-space: nowrap;
        margin: 0;
        text-align: left;
        padding: 0;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        z-index: 1001;
        position: relative;
        width: 24px;
        height: 24px;
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        background: transparent;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }
    
    .nav-open {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 300px;
    }
    
    .nav li {
        margin: 0;
        width: 100%;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        color: #ffffff;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        border-radius: 6px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .nav a:hover,
    .nav a.active {
        color: #ff4444;
        background: rgba(255, 68, 68, 0.1);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 1rem 0;
        min-height: 60vh;
        margin-top: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin: 1rem 0;
        line-height: 1.5;
        color: #cccccc;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .highlight-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 6px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 1rem 0;
    }
    
    /* Mobile body padding adjustment */
    body {
        padding-top: 100px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .services-container .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .service-card ul {
        padding-left: 1.2rem;
    }
    
    .service-card li {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 1rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card .author {
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left, .footer-middle, .footer-right {
        margin-bottom: 1.5rem;
    }
    
    /* Contact Info Mobile Styling */
    .footer-right h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #ffffff;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }
    
    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        width: 100%;
        margin-bottom: 0;
    }
    
    .contact-info i {
        color: #ff4444;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .contact-info .text-sm {
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-info .font-medium {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.2rem;
    }
    
    .contact-info .location-detail {
        color: #cccccc;
        font-size: 0.8rem;
        margin-left: 0;
        margin-top: 0.2rem;
    }
    
    .business-hours {
        padding-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .business-hours h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .hours-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .service-highlights {
        gap: 0.6rem;
    }
    
    .highlight-item {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    /* Contact Info for Small Mobile */
    .footer-right h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-info {
        gap: 1.2rem;
    }
    
    .contact-info li {
        gap: 0.8rem;
    }
    
    .contact-info i {
        width: 18px;
        height: 18px;
    }
    
    .contact-info .text-sm {
        font-size: 0.9rem;
    }
    
    .contact-info .font-medium {
        font-size: 0.9rem;
    }
    
    .contact-info .location-detail {
        font-size: 0.8rem;
    }
    
    .social-media {
        font-size: 0.65rem;
    }
    
    .social-icons a {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.6rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        width: 20px;
        height: 20px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .service-highlights {
        gap: 0.4rem;
    }
    
    .highlight-item {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 250px;
    }
    
    .services-grid {
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        gap: 0.8rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-left, .footer-middle, .footer-right {
        margin-bottom: 1rem;
    }
    
    .business-hours {
        padding-top: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hours-grid {
        gap: 0.4rem;
    }
    
    .hours-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 0.6rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-highlights {
        flex-direction: row;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 120px;
    }
    
    .services {
        padding: 1rem 0;
    }
    
    /* Small mobile body padding adjustment */
    body {
        padding-top: 90px;
    }
    
    /* Process Section Small Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .step {
        padding: 1.2rem 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .testimonials {
        padding: 1rem 0;
    }
    
    .footer {
        padding: 1rem 0;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        min-width: 44px;
        min-height: 44px;
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        height: 3px;
    }
    
    /* Tablet Hero Section */
    .hero {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .service-highlights {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 200px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Tablet Services */
    .services {
        padding: 1rem 0;
    }
    
    .services-container {
        gap: 0.5rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .service-card {
        width: 100%;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .scroll-left {
        left: -20px;
    }
    
    .scroll-right {
        right: -20px;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Tablet Testimonials */
    .testimonials {
        padding: 1rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
    }
    
    .nav-open {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        color: #ffffff;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
        border-radius: 8px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav a:hover,
    .nav a.active {
        color: #ff4444;
        background: rgba(255, 68, 68, 0.1);
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 768px) {
    /* Ensure all interactive elements are touch-friendly */
    .btn-primary, .btn-secondary, .btn-service {
        min-height: 50px;
        min-width: 44px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icons a {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Improve text readability */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        font-size: 14px;
        line-height: 1.5;
        padding-top: 0;
    }
    
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
    }
    
    /* Add top padding for fixed header on mobile */
    body {
        padding-top: 60px;
    }
    
    /* Improve form elements */
    input, textarea, select {
        font-size: 14px; /* Prevents zoom on iOS */
        padding: 10px;
        border-radius: 6px;
    }
    
    /* Better spacing for mobile */
    .section {
        padding: 1rem 0;
    }
    
    .hero {
        padding: 1rem 0;
    }
    
    .services {
        padding: 1rem 0;
    }
    
    .testimonials {
        padding: 1rem 0;
    }
    
    .footer {
        padding: 1rem 0;
    }
    
    /* Improve section headings */
    .section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    /* Better card spacing */
    .card, .service-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    /* Improve list styling */
    ul, ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }
    
    li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card, .loyalty-card, .value-card, .contact-card, .points-card, .tier-card, .faq-item {
        border: 2px solid #ffffff;
    }
    
    .btn-primary, .btn-secondary, .btn-service {
        border: 2px solid #ffffff;
    }
}

/* Contact Information Section */
.contact-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
}

.contact-details-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0 auto 0.8rem;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.contact-icon a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-icon a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: #ff4444;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    line-height: 1.2;
}

.locations-delivery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.locations-section,
.delivery-section {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.section-title {
    color: #ff4444;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.location-icon {
    color: #ff4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.location-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-details p {
    color: #cccccc;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.location-note {
    color: #999999;
    font-size: 0.85rem;
    font-style: italic;
}

.status-badge {
    background: #ffa500;
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.delivery-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.delivery-icon {
    color: #4CAF50;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.delivery-text h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.delivery-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.delivery-note {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Embedded Map */
.map-embed {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 68, 68, 0.25);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

@media (max-width: 768px) {
    .map-embed iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-embed iframe {
        height: 260px;
    }
}

.delivery-note strong {
    color: #ff4444;
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact-details-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 0.8rem;
        min-height: 120px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-card h3 {
        font-size: 0.9rem;
    }
    
    .contact-detail {
        font-size: 0.65rem;
    }
    
    .locations-delivery-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .locations-section,
    .delivery-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .location-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .delivery-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .delivery-icon {
        font-size: 1.5rem;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .contact-details-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .contact-card {
        padding: 0.6rem;
        min-height: 110px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card h3 {
        font-size: 0.8rem;
    }
    
    .contact-detail {
        font-size: 0.6rem;
    }
    
    .locations-section,
    .delivery-section {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .location-item {
        padding: 0.6rem;
    }
    
    .delivery-note {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
}

.form-container p {
    color: #cccccc;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.4);
    background: linear-gradient(135deg, #ff5555, #ff7777);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* Radio Button Styles */
.contact-method-group {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
    justify-content: center;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.radio-label:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.2);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid #ff4444;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.2);
}

.radio-label input[type="radio"]:checked + .radio-custom {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
    transform: scale(1.1);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    border-radius: 1px;
}

.radio-label input[type="radio"]:checked ~ span {
    color: #ff4444;
    font-weight: 700;
}

.radio-label:hover .radio-custom {
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
    transform: scale(1.05);
}

.radio-label:active {
    transform: translateY(0);
}

/* Other Subject Group Animation */
#otherSubjectGroup {
    transition: all 0.3s ease;
    overflow: hidden;
}

#otherSubjectGroup.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 100px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
}

.faq-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.3);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.4);
}

.faq-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1.5rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.6rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .faq-item h3 {
        font-size: 0.95rem;
    }
    
    .faq-item p {
        font-size: 0.8rem;
    }
}

/* Request Service Design Section */
.request-service-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    text-align: center;
}

.request-service-content {
    max-width: 800px;
    margin: 0 auto;
}

.request-service-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.request-service-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.request-service-content .btn-primary {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    border: none;
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.request-service-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.4);
    background: linear-gradient(135deg, #ff5555, #ff7777);
    text-decoration: none;
    color: #ffffff;
}

/* Mobile Responsive for Request Service Section */
@media (max-width: 768px) {
    .request-service-section {
        padding: 3rem 0;
    }
    
    .request-service-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .request-service-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .request-service-content .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .request-service-section {
        padding: 2rem 0;
    }
    
    .request-service-content h2 {
        font-size: 1.8rem;
    }
    
    .request-service-content p {
        font-size: 1rem;
    }
    
    .request-service-content .btn-primary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Mobile Responsive for Contact Form */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .form-container p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-form .btn-primary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .form-container h2 {
        font-size: 1.6rem;
    }
    
    .form-container p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .contact-form .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark theme */
}

/* Focus States for Accessibility */
.btn-primary:focus, .btn-secondary:focus, .btn-service:focus,
.nav a:focus, .footer a:focus {
    outline: 2px solid #ff4444;
    outline-offset: 2px;
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #ff4444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6666;
}

/* Selection Colors */
::selection {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 68, 68, 0.3);
    color: #ffffff;
}
