/* CSS Variables */
:root {
    --primary-blue: #1a237e;
    --light-blue: #e3f2fd;
    --teal: #26a69a;
    --dark-navy: #0d47a1;
    --electric-blue: #2196f3;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

/* Prevent scaling on all interactive elements */
button,
a,
input,
select,
textarea,
[role="button"],
[tabindex] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Ensure no scaling on active/focus states */
button:active,
a:active,
input:active,
select:active,
textarea:active,
[role="button"]:active,
[tabindex]:active {
    transform: none !important;
    scale: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    /* Prevent viewport zoom on mobile Safari */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
	/* Span full width so logo and links sit at screen edges */
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0 16px; /* small gutter to avoid touching bezel */
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Prevent any scaling on click/tap */
    transform: none !important;
    /* Prevent viewport zoom on mobile Safari */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Ensure no scaling on any button state */
.cta-button:active,
.cta-button:focus,
.cta-button:focus-visible {
    transform: none !important;
    scale: none !important;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:active,
.cta-button.primary:focus {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

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

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.cta-button.secondary:active,
.cta-button.secondary:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.cta-button.accent {
    background: linear-gradient(135deg, var(--teal) 0%, var(--electric-blue) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-button.accent:hover {
    box-shadow: var(--shadow-lg);
}

.cta-button.accent:active,
.cta-button.accent:focus {
    outline: 2px solid var(--electric-blue);
    outline-offset: 2px;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    min-height: 100svh; /* use small viewport height on mobile for full screen */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full height, crop width if needed */
    position: absolute;
    top: 0; 
    right: 0; /* Align to the right side */
    left: auto; /* Override left positioning */
    transition: opacity 0.3s ease;
}

/* Adjust video positioning for desktop to show full phone */
@media (min-width: 769px) {
    .hero-video-background video {
        object-position: right center; /* Position video content to the right */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

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

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal);
}

.calculator-result {
    display: flex;
    justify-content: center;
}

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--teal);
}

.result-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.result-card p {
    color: var(--text-light);
}

/* Trust Section */
.trust {
    padding: 80px 0;
}

.testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-light);
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light-blue);
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.trust-badge i {
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--teal);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    width: 20px;
    text-align: center;
}

.pricing-features .fa-check {
    color: var(--teal);
}

.pricing-features .fa-times {
    color: #dc3545;
}

.savings {
    background: var(--light-blue);
    padding: 1rem;
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.final-cta .cta-button.secondary {
    border-color: var(--white);
    color: var(--white);
}

.final-cta .cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Voice Agent Modal */
.voice-agent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.voice-agent-content {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}

.voice-agent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.voice-agent-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.voice-agent-content elevenlabs-convai {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 16px;
}

/* Responsive design for voice modal */
@media (max-width: 768px) {
    .voice-agent-content {
        margin: 10px;
        max-height: 90vh;
        max-width: 95vw;
    }
    
    .voice-agent-content elevenlabs-convai {
        height: 70vh;
    }
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    filter: none;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    color: var(--text-dark);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    /* Perfect centering */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: auto;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Center the content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

#demoVideo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    object-fit: contain;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.booking-modal-content::-webkit-scrollbar {
    display: none; /* WebKit */
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px 16px 20px;
    border-bottom: 1px solid #eef2f7;
    position: relative;
}

.booking-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.booking-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.booking-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.booking-body {
    padding: 16px 20px 20px;
    flex: 1;
    overflow-y: auto;
    max-height: 70vh;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.booking-body::-webkit-scrollbar {
    display: none; /* WebKit */
}

.booking-status {
    font-size: 0.95rem;
    color: #53627C;
    margin-bottom: 12px;
}

.slot-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.slot-item {
    padding: 6px 8px;
    border: 1px solid #e6ecf5;
    border-radius: 8px;
    cursor: pointer;
    background: #f9fbff;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.slot-item:hover {
    background: #eef6ff;
    border-color: #cfe3ff;
}

.slot-item .slot-date {
    display: block;
    font-size: 0.8rem;
    color: #6b7a90;
}

.slot-item .slot-time {
    display: block;
    font-weight: 600;
    color: #1a237e;
}

.slot-item.selected {
    outline: 2px solid #1a73e8;
    background: #eef6ff;
}

.slot-item-busy {
    background: #f5f5f5 !important;
    border-color: #d0d0d0 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.slot-item-busy:hover {
    background: #f5f5f5 !important;
    border-color: #d0d0d0 !important;
}

.slot-item-busy .slot-date {
    color: #999 !important;
}

.slot-item-busy .slot-time {
    color: #666 !important;
}

.time-list {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

/* Make available time buttons blue and busy ones gray */
.time-list .slot-item:not(.slot-item-busy) {
    background: #1a73e8;
    border-color: #1a73e8;
    color: #ffffff;
}
.time-list .slot-item:not(.slot-item-busy):hover {
    background: #155fc0;
    border-color: #155fc0;
}
.time-list .slot-item:not(.slot-item-busy) .slot-time { color: #ffffff; }
.time-list .slot-item.slot-item-busy,
.time-list .slot-item:disabled {
    background: #f0f0f0 !important;
    border-color: #d0d0d0 !important;
    color: #999 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 90px 0 48px;
        min-height: 100svh;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        padding: 0 16px;
    }
    
    /* Mobile layout: video on top, text below */
    .hero {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 120px 0 80px;
        justify-content: center;
    }
    
    .hero-video-background {
        position: relative;
        height: 45vh;
        z-index: 1;
        order: 1;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
        order: 2;
        padding: 0 16px;
    }
    
    .hero-video-background video {
        object-fit: cover;
        left: 0;
        right: auto;
        width: 100%;
        height: 100%;
    }
    /* Already using cover globally */
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .slot-list {
        grid-template-columns: 1fr;
    }
    
    .video-modal {
        padding: 10px;
    }
    
    .video-modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 8px;
    }
    
    #demoVideo {
        max-height: 70vh;
        border-radius: 8px;
    }
    
    .video-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .video-modal {
        padding: 5px;
    }
    
    .video-modal-content {
        border-radius: 6px;
    }
    
    #demoVideo {
        max-height: 60vh;
        border-radius: 6px;
    }
    
    .video-close {
        top: 8px;
        right: 12px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
}

.booking-form {
    max-height: 400px;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-card,
    .benefit-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .phone-screen {
        width: 250px;
        height: 500px;
    }
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: contactModalSlideIn 0.3s ease-out;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.contact-modal-content::-webkit-scrollbar {
    display: none; /* WebKit */
}

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

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    background-color: var(--light-gray);
    color: var(--text-dark);
}

.contact-modal-header {
    padding: 40px 40px 20px 40px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.contact-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-modal-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.contact-modal-body {
    padding: 30px 40px 40px 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-left-color: var(--teal);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 20px;
    margin-top: 5px;
    min-width: 24px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.contact-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    border: 1px solid transparent;
}

.contact-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 35, 126, 0.3);
}

.email-link:hover {
    background-color: var(--electric-blue);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.whatsapp-link:hover {
    background-color: #25D366;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    box-shadow: 0 4px 8px rgba(188, 24, 136, 0.3);
}

.website-link:hover {
    background-color: var(--teal);
    box-shadow: 0 4px 8px rgba(38, 166, 154, 0.3);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 8px 0 0 0;
    font-style: italic;
}

/* Mobile Responsiveness for Contact Modal */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .contact-modal-header {
        padding: 30px 20px 15px 20px;
    }
    
    .contact-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-modal-body {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .phone-numbers {
        align-items: center;
    }
    
    .contact-link {
        display: block;
        text-align: center;
        margin: 5px 0;
    }
}