@charset "UTF-8"; /* Variables */ :root { /* Palette de couleurs principale */ --color-primary: #1B3B6F; /* Bleu médical profond */ --color-accent: #E63946; /* Rouge médical vif */ --color-white: #FFFFFF; /* Blanc pur */ --color-light-gray: #F8F9FA; /* Gris très clair */ --color-light-blue: #457B9D; /* Bleu médical clair */ /* Nouvelles couleurs premium */ --color-dark: #1D3557; /* Bleu nuit */ --color-gold: #FFD700; /* Or médical */ --color-gray-dark: #2B2D42; /* Gris foncé */ --color-gray-light: #EDF2F4; /* Gris clair */ --color-success: #2A9D8F; /* Vert médical */ --color-warning: #E9C46A; /* Jaune médical */ /* Typographie */ --font-heading: 'Playfair Display', serif; --font-body: 'Poppins', sans-serif; /* Espacements */ --spacing-xs: 0.25rem; --spacing-sm: 0.5rem; --spacing-md: 1rem; --spacing-lg: 2rem; --spacing-xl: 4rem; /* Dégradés */ --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-light-blue)); --gradient-accent: linear-gradient(135deg, var(--color-accent), #FF6B6B); --gradient-dark: linear-gradient(135deg, var(--color-dark), var(--color-primary)); /* Ombres avec couleurs */ --shadow-sm: 0 2px 4px rgba(27, 59, 111, 0.1); --shadow-md: 0 4px 6px rgba(27, 59, 111, 0.15); --shadow-lg: 0 10px 15px rgba(27, 59, 111, 0.2); /* Transitions */ --transition-fast: 0.3s ease; --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1); --soft-shadow: 0 2px 12px rgba(27, 59, 111, 0.06); --soft-radius: 18px; --soft-bg: #F6F8FA; --soft-card-bg: #fff; --soft-border: 1px solid #E3E7ED; } /* Reset & Base */ *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: var(--font-body); line-height: 1.6; color: var(--color-dark); background-color: var(--soft-bg); overflow-x: hidden; padding-top: 100px; min-height: 100vh; background: var(--soft-bg); color: var(--color-dark); font-weight: 400; display: flex; flex-direction: column; } main, .main-content { flex: 1 0 auto; } /* Container */ .container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg); } /* Sections */ section { width: 100%; padding: var(--spacing-xl) 0 var(--spacing-lg) 0; position: relative; overflow: hidden; z-index: 1; background: none; padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); margin-top: 0; } /* About Section */ .about-section { background-color: var(--soft-bg); } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); align-items: center; width: 100%; box-sizing: border-box; } .about-text { padding: var(--spacing-lg); } .about-image { width: 100%; height: 400px; background-color: var(--soft-card-bg); border-radius: var(--soft-radius); overflow: hidden; box-shadow: var(--soft-shadow); } .about-image img { width: 100%; height: 100%; object-fit: cover; } /* Skills Grid */ .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); margin-top: var(--spacing-xl); width: 100%; box-sizing: border-box; } /* Responsive grid for skills */ @media (max-width: 1024px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .skills-grid { grid-template-columns: 1fr; } } /* Publications Grid */ .publications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--spacing-lg); margin-top: var(--spacing-xl); width: 100%; box-sizing: border-box; } /* Contact Section */ .contact-section { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: var(--spacing-xl) 0; } .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-xl); max-width: 1200px; margin: 0 auto; } .contact-info { background: #fff; border-radius: 20px; padding: var(--spacing-xl); box-shadow: 0 10px 40px rgba(27,59,111,0.08); border: 1px solid rgba(27,59,111,0.05); } .contact-info h3 { color: var(--color-primary); font-size: 1.8rem; margin-bottom: var(--spacing-lg); text-align: center; font-weight: 600; } .contact-item { display: flex; align-items: flex-start; margin-bottom: var(--spacing-lg); padding: var(--spacing-md); border-radius: 12px; transition: all 0.3s ease; background: #f8fafc; border: 1px solid transparent; } .contact-item:hover { background: #fff; border-color: rgba(230,57,70,0.1); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(27,59,111,0.08); } .contact-icon { width: 24px; height: 24px; margin-right: var(--spacing-md); margin-top: 2px; flex-shrink: 0; opacity: 0.8; } .contact-details { flex: 1; } .contact-details strong { display: block; color: var(--color-primary); font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; } .contact-details p { margin: 0; color: var(--color-gray-dark); font-size: 1rem; line-height: 1.5; } .contact-details a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; } .contact-details a:hover { color: var(--color-primary); text-decoration: underline; } .contact-info .social-links { display: flex; justify-content: center; gap: var(--spacing-md); margin-top: var(--spacing-lg); padding-top: var(--spacing-lg); border-top: 1px solid rgba(27,59,111,0.1); } .contact-info .social-links a { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: #f8fafc; border: 1px solid rgba(27,59,111,0.1); transition: all 0.3s ease; } .contact-info .social-links a:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230,57,70,0.2); } .contact-info .social-links img { width: 24px; height: 24px; transition: filter 0.3s ease; } .contact-info .social-links a:hover img { filter: brightness(0) invert(1); } .contact-form { background: #fff; border-radius: 20px; padding: var(--spacing-xl); box-shadow: 0 10px 40px rgba(27,59,111,0.08); border: 1px solid rgba(27,59,111,0.05); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; } .contact-form h3 { color: var(--color-primary); font-size: 1.8rem; margin-bottom: var(--spacing-md); font-weight: 600; } .contact-form p { color: var(--color-gray-dark); font-size: 1.1rem; margin-bottom: var(--spacing-lg); line-height: 1.6; } .contact-form .cta-button { font-size: 1.2rem; padding: 1rem 2.5rem; border-radius: 50px; background: linear-gradient(135deg, var(--color-accent) 0%, #c82333 100%); box-shadow: 0 8px 32px rgba(230,57,70,0.15); transition: all 0.3s ease; } .contact-form .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(230,57,70,0.25); background: linear-gradient(135deg, #c82333 0%, var(--color-accent) 100%); } @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: var(--spacing-lg); } .contact-info, .contact-form { padding: var(--spacing-lg); } .contact-item { padding: var(--spacing-sm); } .contact-icon { width: 20px; height: 20px; margin-right: var(--spacing-sm); } .contact-details strong { font-size: 0.95rem; } .contact-details p { font-size: 0.95rem; } } /* Typographie */ h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin-bottom: var(--spacing-md); color: var(--color-primary); } h1 { font-size: 2.8rem; font-weight: 600; letter-spacing: 0.01em; margin-bottom: var(--spacing-md); } h2 { font-size: 1.5rem; font-weight: 400; color: var(--color-light-blue); margin-bottom: var(--spacing-md); } h3 { font-size: clamp(1.5rem, 3vw, 2rem); } p { margin-bottom: var(--spacing-md); font-size: 1.1rem; color: var(--color-gray-dark); } /* Header & Navigation */ .header { background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 20px rgba(27,59,111,0.1); position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all 0.3s ease; border-bottom: 1px solid rgba(27,59,111,0.1); } .nav { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; } /* Logo styles */ .logo { display: block; height: 60px; transition: all 0.3s ease; padding: 0.5rem; } .logo img { height: 50px; width: auto; object-fit: contain; transition: all 0.3s ease; filter: none; } .logo:hover img { transform: scale(1.05); } .nav-links { display: flex; list-style: none; gap: 2rem; margin: 0; padding: 0; align-items: center; } .nav-links li { margin: 0; padding: 0; } .nav-links a { text-decoration: none; color: #1B3B6F; font-weight: 500; font-size: 1rem; padding: 0.5rem 1rem; border-radius: 8px; transition: all 0.3s ease; } .nav-links a:hover { background: rgba(230,57,70,0.1); color: #E63946; } .nav-links .social-links { display: flex; gap: 1rem; align-items: center; } .nav-links .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f8fafc; border: 1px solid rgba(27,59,111,0.1); transition: all 0.3s ease; padding: 0; } .nav-links .social-links a:hover { background: #E63946; border-color: #E63946; transform: translateY(-2px); } .nav-links .social-links img { width: 20px; height: 20px; transition: filter 0.3s ease; } .nav-links .social-links a:hover img { filter: brightness(0) invert(1); } /* Menu Toggle Button */ .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; flex-direction: column; gap: 4px; } .menu-toggle span { display: block; width: 25px; height: 3px; background-color: #1B3B6F; transition: all 0.3s ease; border-radius: 2px; } .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .menu-toggle.active span:nth-child(2) { opacity: 0; } .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); } /* Mobile Navigation */ @media (max-width: 768px) { .nav { padding: 1rem; } .logo img { height: 40px; } .menu-toggle { display: flex; } .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transition: right 0.3s ease; z-index: 1000; } .nav-links.active { right: 0; } .nav-links li { opacity: 0; transform: translateY(20px); transition: all 0.3s ease; } .nav-links.active li { opacity: 1; transform: translateY(0); } .nav-links .social-links { flex-direction: row; gap: 1.5rem; } .navbar-rdv-btn { margin: 1rem 0; padding: 0.8rem 2rem; font-size: 1rem; } } /* Hero Section */ .hero { min-height: calc(100vh - 100px); /* header height compensation */ height: auto; display: flex; align-items: center; justify-content: center; padding: 0; margin-top: 0; border-bottom: 1px solid #e3e7ed; background: linear-gradient(120deg, #f8fafc 60%, #eaf1fa 100%); } .hero .container { width: 100%; max-width: none; padding: 0; display: flex; align-items: center; justify-content: center; } .hero-content { width: 100%; max-width: 700px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; } .hero h1, .hero h2 { color: var(--color-primary); } .hero h2 { font-size: 1.5rem; font-weight: 400; color: var(--color-light-blue); margin-bottom: var(--spacing-md); } .tagline { font-size: 1.1rem; color: var(--color-dark); margin-bottom: var(--spacing-lg); } /* Section titles */ .section-title { color: var(--color-primary); position: relative; padding-bottom: var(--spacing-sm); text-align: center; margin-bottom: var(--spacing-lg); font-size: 2rem; font-weight: 500; letter-spacing: 0.01em; } .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--gradient-accent); border-radius: 2px; } /* Cards */ .skill-card, .publication-card { background: var(--soft-card-bg); padding: var(--spacing-lg) var(--spacing-md); border-radius: var(--soft-radius); text-align: center; transition: box-shadow 0.2s, border 0.2s; box-shadow: var(--soft-shadow); border: var(--soft-border); height: 100%; display: flex; flex-direction: column; justify-content: space-between; font-weight: 400; } .skill-card:hover, .publication-card:hover { box-shadow: 0 4px 24px rgba(27,59,111,0.10); border-color: var(--color-light-blue); } /* Form styles */ .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); background: var(--color-white); } .form-group input:focus + label, .form-group textarea:focus + label, .form-group input:not(:placeholder-shown) + label, .form-group textarea:not(:placeholder-shown) + label { transform: translateY(-1.5rem) scale(0.8); color: var(--color-primary); } /* Footer */ .footer { background: var(--color-white); color: var(--color-dark); padding: var(--spacing-xl) 0 var(--spacing-md); position: relative; border-top: var(--soft-border); box-shadow: none; flex-shrink: 0; } .footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-accent); } .footer-content { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-xl); } .footer-info { display: flex; flex-direction: column; align-items: flex-start; } .footer-logo { height: 60px; width: auto; margin-bottom: var(--spacing-md); filter: none; opacity: 1; transition: var(--transition-fast); } .footer-logo:hover { opacity: 1; transform: scale(1.05); } .footer-info p { color: var(--color-gray-dark); font-size: 1rem; line-height: 1.5; margin: 0; } .footer-links h4, .footer-contact h4 { color: var(--color-primary); font-size: 1.2rem; font-weight: 600; margin-bottom: var(--spacing-md); } .footer-links ul { list-style: none; padding: 0; margin: 0; } .footer-links a { color: var(--color-gray-dark); text-decoration: none; font-size: 1rem; line-height: 1.8; transition: color 0.2s ease; display: block; padding: 0.2rem 0; } .footer-links a:hover { color: var(--color-accent); } .footer-contact p { color: var(--color-gray-dark); font-size: 1rem; line-height: 1.6; margin-bottom: 0.5rem; display: flex; align-items: center; } .footer-contact a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; } .footer-contact a:hover { color: var(--color-primary); } .footer-social-links { display: flex; gap: 1rem; margin-top: var(--spacing-md); } .footer-social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f8fafc; border: 1px solid rgba(27,59,111,0.1); transition: all 0.3s ease; } .footer-social-links a:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-2px); } .footer-social-links img { width: 20px; height: 20px; transition: filter 0.3s ease; } .footer-social-links a:hover img { filter: brightness(0) invert(1); } .footer-bottom { text-align: center; padding-top: var(--spacing-lg); margin-top: var(--spacing-lg); border-top: 1px solid rgba(27,59,111,0.1); } .footer-bottom p { color: var(--color-gray-dark); font-size: 0.9rem; margin: 0; } @media (max-width: 768px) { .footer-content { grid-template-columns: 1fr; gap: var(--spacing-lg); text-align: center; } .footer-info { align-items: center; } .footer-links ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; } .footer-contact p { justify-content: center; } .footer-social-links { justify-content: center; } } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth); } .fade-in.animate { opacity: 1; transform: translateY(0); } /* Utilitaires */ .text-center { text-align: center; } .mb-sm { margin-bottom: var(--spacing-sm); } .mb-md { margin-bottom: var(--spacing-md); } .mb-lg { margin-bottom: var(--spacing-lg); } .mb-xl { margin-bottom: var(--spacing-xl); } /* Scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: var(--color-gray-light); } ::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: var(--color-accent); } /* Focus styles */ :focus { outline: 2px solid var(--color-accent); outline-offset: 2px; } :focus:not(:focus-visible) { outline: none; } /* Loading animation */ .loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: var(--color-white); animation: spin 1s ease-in-out infinite; margin-right: 10px; } @keyframes spin { to { transform: rotate(360deg); } } /* Notification styles */ .notification { position: fixed; bottom: 20px; right: 20px; padding: 15px 25px; border-radius: 5px; color: white; transform: translateY(100px); opacity: 0; transition: all 0.3s ease; z-index: 1000; box-shadow: var(--shadow-lg); } .notification.show { transform: translateY(0); opacity: 1; } .notification.success { background: var(--color-success); } .notification.error { background: var(--color-accent); } /* Additional styles */ .cta-button, .submit-button { background: var(--color-accent); color: var(--color-white); border-radius: 32px; font-size: 1rem; font-weight: 500; padding: 0.9rem 2.2rem; box-shadow: var(--soft-shadow); border: none; transition: background 0.2s, color 0.2s; text-decoration: none; } .cta-button:hover, .submit-button:hover { background: #c82333; color: var(--color-white); } .cta-button:active, .submit-button:active { transform: translateY(0); } .skill-icon { width: 64px; height: 64px; margin: 0 auto var(--spacing-md); } .skill-icon img { width: 100%; height: 100%; object-fit: contain; } .timeline { position: relative; max-width: 800px; margin: var(--spacing-xl) auto; } .timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background-color: var(--color-primary); } .timeline-item { margin-bottom: var(--spacing-xl); position: relative; } .timeline-content { background-color: var(--soft-card-bg); padding: var(--spacing-xl); border-radius: var(--soft-radius); box-shadow: var(--soft-shadow); position: relative; border: var(--soft-border); font-weight: 400; } .timeline-date { color: var(--color-accent); font-weight: 500; font-size: 1.1rem; margin-bottom: var(--spacing-sm); } .read-more { display: inline-block; color: var(--color-accent); text-decoration: none; font-weight: 500; margin-top: var(--spacing-md); transition: var(--transition-fast); } .read-more:hover { color: var(--color-primary); text-decoration: underline; } .publication-date { color: var(--color-gray-dark); font-size: 0.9rem; margin-bottom: var(--spacing-sm); } .footer-links ul { list-style: none; padding: 0; } .footer-links a { color: var(--color-primary); text-decoration: none; transition: var(--transition-fast); opacity: 0.7; border-radius: 6px; padding: 2px 6px; transition: background 0.2s, color 0.2s; } .footer-links a:hover { background: var(--color-light-gray); color: var(--color-accent); opacity: 1; } .footer-bottom { text-align: center; margin-top: var(--spacing-lg); padding-top: var(--spacing-md); border-top: none; color: #8a99b3; font-size: 0.95rem; } /* Rendre le contenu visible même sans JS */ .hero-content, .fade-in, .slide-in, .scale-in { opacity: 1 !important; transform: none !important; transition: none !important; } /* Utility: Remove all strong shadows and hard borders */ .box-shadow, .shadow, .card, .timeline, .timeline-item { box-shadow: none !important; border: none !important; } /* WhatsApp Float */ .whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #25D366; box-shadow: 0 2px 8px rgba(0,0,0,0.2); transition: transform 0.2s ease; z-index: 1000; } .whatsapp-float:hover { transform: translateY(-3px); } .whatsapp-float svg { width: 28px; height: 28px; } .sticky-rdv-btn { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); background: #E63946; color: #fff; padding: 1rem 2rem; border-radius: 32px; font-size: 1.1rem; font-weight: 600; box-shadow: 0 4px 16px rgba(27,59,111,0.12); z-index: 1200; text-decoration: none; transition: background 0.2s, transform 0.2s; display: inline-block; } .sticky-rdv-btn:hover { background: #c82333; transform: translateY(-2px) scale(1.03); } .navbar-rdv-btn { background: #E63946; color: #fff !important; padding: 0.7rem 2.2rem; border-radius: 24px; font-weight: 700; font-size: 1.13rem; text-decoration: none; margin-left: 1.5rem; margin-right: 1.5rem; transition: background 0.2s, box-shadow 0.2s, transform 0.2s; display: inline-flex; align-items: center; vertical-align: middle; box-shadow: 0 2px 6px rgba(27,59,111,0.10); border: 1.5px solid #e3e7ed; letter-spacing: 0.01em; } @media (max-width: 768px) { .navbar-rdv-btn, .nav .cta-button { display: block !important; margin-left: auto !important; margin-right: auto !important; margin-top: 1rem !important; margin-bottom: 1rem !important; } } .nav .cta-button { background: #E63946 !important; color: #fff !important; border-radius: 24px !important; font-family: 'Poppins', sans-serif !important; font-size: 0.98rem !important; font-weight: 500 !important; padding: 0.5rem 1.2rem !important; box-shadow: 0 8px 32px rgba(230,57,70,0.10) !important; border: none !important; outline: none !important; text-align: center !important; display: inline-block !important; margin-left: 1.5rem !important; transition: background 0.2s, color 0.2s, box-shadow 0.2s !important; vertical-align: middle !important; } .nav .cta-button:hover { background: #c82333 !important; color: #fff !important; box-shadow: 0 12px 32px rgba(230,57,70,0.13) !important; } .nav, .nav-links { display: flex; align-items: center; } @media (max-width: 768px) { .nav { display: flex; align-items: center; justify-content: space-between; } .logo { flex: 0 0 auto; } .nav-mobile-rdv { display: block !important; flex: 1 1 auto; text-align: center; margin: 0 auto !important; max-width: 120px; padding: 0.22rem 0.6rem !important; font-size: 0.8rem !important; border-radius: 12px !important; } .navbar-rdv-btn { display: none !important; } .menu-toggle { flex: 0 0 auto; } } @media (min-width: 769px) { nav .nav-mobile-rdv { display: none !important; } .navbar-rdv-btn { display: inline-block !important; } } /* Rendez-vous Modal Styles */ .modal-bg { display: none !important; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.35); z-index: 2000; align-items: center; justify-content: center; } .modal-bg.active { display: flex !important; } .modal-card { background: #fff; border-radius: 22px; padding: 2.2rem 2.2rem 2rem 2.2rem; max-width: 95vw; min-width: 320px; text-align: center; box-shadow: 0 8px 32px rgba(27,59,111,0.13); position: relative; animation: fadeInUp 0.3s; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .close-modal { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 1.5rem; color: #E63946; cursor: pointer; } .calendar-step, .form-step, .thankyou-step { display: none !important; } .calendar-step.active, .form-step.active, .thankyou-step.active { display: block !important; } /* Additional calendar styling */ .calendar-label { font-size: 1.1rem; margin-bottom: 1.2rem; color: #1B3B6F; font-weight: 600; } .calendar-input { font-size: 1.1rem; padding: 0.7rem 1.2rem; border-radius: 10px; border: 1.5px solid #e3e7ed; margin-bottom: 1.5rem; outline: none; width: 100%; max-width: 300px; } .calendar-input { font-size: 1.1rem; padding: 0.7rem 1.2rem; border-radius: 10px; border: 1.5px solid #e3e7ed; margin-bottom: 1.5rem; outline: none; } .modal-card .form-group { margin-bottom: 1.2rem; text-align: left; position: relative; } .modal-card .form-group label { display: block; margin-bottom: 0.4rem; color: #1B3B6F; font-weight: 500; position: static; font-size: 1rem; background: transparent; padding: 0; pointer-events: auto; opacity: 1; } .modal-card .form-group input { width: 100%; padding: 0.7rem 1rem; border-radius: 10px; border: 1.5px solid #e3e7ed; font-size: 1rem; font-family: inherit; outline: none; background: #fff; color: #1B3B6F; font-weight: 400; box-shadow: none; } .modal-card .form-group input:focus { border-color: #E63946; box-shadow: 0 0 0 2px rgba(230,57,70,0.1); } .toggle-group { display: flex; gap: 0.7rem; margin-bottom: 1.2rem; justify-content: center; } .toggle-btn { padding: 0.6rem 1.2rem; border-radius: 18px; border: 1.5px solid #e3e7ed; background: #f6f8fa; color: #1B3B6F; font-weight: 500; cursor: pointer; transition: background 0.2s, color 0.2s, border 0.2s; } .toggle-btn.active { background: #E63946; color: #fff; border-color: #E63946; } .thankyou-step h2 { color: #E63946; font-size: 2rem; margin-bottom: 1.2rem; } .thankyou-step p { font-size: 1.13rem; color: #222; margin-bottom: 2rem; } .thankyou-step button { margin: 0 auto; display: block; background: #E63946; color: #fff; border: none; border-radius: 10px; padding: 0.8rem 2.2rem; font-size: 1.08rem; font-weight: 600; cursor: pointer; box-shadow: 0 2px 8px rgba(27,59,111,0.08); transition: background 0.2s; } @media (max-width: 500px) { .modal-card { min-width: 0; padding: 1.2rem 0.5rem 1rem 0.5rem; } .cta-button { font-size: 1.05rem; padding: 0.8rem 1.2rem; } }