:root {
    --primary-pink: #E8D5E8;
    --primary-purple: #C8B3D8;
    --accent-orange: #FF8C42;
    --dark-navy: #1B2942;
    --text-dark: #2D3748;
    --text-gray: #718096;
    --bg-light: #F7FAFC;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

/* Logo Styles - Image Based */
.logo-link {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s;
}

.logo-image:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Footer Logo */
footer .logo-image {
    height: 45px;
}

/* Legacy styles (kept for compatibility) */
.logo-card {
    background: linear-gradient(135deg, #E8D5E8 0%, #F0E5F0 100%);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 3px solid var(--dark-navy);
    transition: all 0.3s;
}

.logo-text-main {
    color: var(--dark-navy);
    font-size: 1.4rem;
    font-weight: 600;
}

.logo-badge {
    background: var(--dark-navy);
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B35 100%);
    border-radius: 50%;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 4px;
    right: 4px;
}

.logo-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }

    footer .logo-image {
        height: 35px;
    }
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
}

.nav-cta {
    background: var(--accent-orange);
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-cta:hover {
    background: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 50%, #B8A3D8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -250px;
    right: -150px;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 700;
}

.highlight {
    color: var(--accent-orange);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-bottom: 2.5rem;
    opacity: 0.85;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
}

.stat-badge strong {
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.stat-badge span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.05rem;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
    background: #FF6B35;
}

.btn-secondary {
    background: white;
    color: var(--dark-navy);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Page Hero */
.page-hero {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--dark-navy);
    opacity: 0.85;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 2.5rem 2rem;
    border-top: 1px solid #E2E8F0;
}

.trust-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trust-item:hover {
    opacity: 1;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Features */
.features {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--dark-navy);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title.white {
    color: white;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.7;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Stats */
.stats {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2D4563 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.stat-item p {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

/* Footer */
footer {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-orange);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .page-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Credit Card Display */
.credit-card-display {
    position: relative;
}

.card {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2D4563 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.card-number {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
}

.card-info {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.card-label {
    font-size: 0.7rem;
    opacity: 0.7;
}

.card-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    opacity: 0.3;
    font-weight: bold;
}

.payment-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service Page */
.services-detail {
    padding: 4rem 2rem;
    background: white;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

/* Solution Page */
.solutions-grid {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.solution-card ul {
    list-style: none;
}

.solution-card ul li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    padding-left: 1.2rem;
    position: relative;
}

.solution-card ul li::before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Security Page */
.security-features {
    padding: 4rem 2rem;
    background: white;
}

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

.security-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.security-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Compliance Section */
.compliance-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.compliance-section h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    font-weight: 700;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.compliance-badge {
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-navy);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* About Page */
.about-content {
    padding: 4rem 2rem;
    background: white;
}

.about-section {
    margin-bottom: 4rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-section p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1300px;
}

.about-stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.about-stat h3 {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-stat p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Company Highlights */
.company-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

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

.value-item {
    padding: 2rem;
    border-left: 4px solid var(--accent-orange);
    background: var(--bg-light);
    border-radius: 10px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.award-badge {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.award-item h4 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member p {
    color: var(--text-gray);
}

/* Contact Page */
.contact-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-methods {
    margin-top: 3rem;
}

.contact-method {
    margin-bottom: 2rem;
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-method h4 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method p {
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.faq-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive for Components */
@media (max-width: 968px) {
    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .placeholder-image {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero::before {
    animation: float 8s ease-in-out infinite;
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
