1127 lines
21 KiB
CSS
1127 lines
21 KiB
CSS
/*
|
|
STYLESHEET FOR AIMOJSTER.SI
|
|
Last Updated: 16. September 2025
|
|
Author: Gemini AI for AIMojster.si
|
|
*/
|
|
|
|
:root {
|
|
/* Tech & AI Inspired Color Scheme */
|
|
--primary-color: #7B2DFF; /* Vibrant Purple */
|
|
--secondary-color: #9A5BFF; /* Lighter Violet */
|
|
--accent-color: #00F5D4; /* Bright Teal/Cyan */
|
|
--accent-light: #70F8E3; /* Light Teal */
|
|
--text-color: #1D2B48; /* Deep Blue-Black */
|
|
--light-text: #6B7C93; /* Muted Gray-Blue */
|
|
--background: #ffffff; /* Pure White */
|
|
--light-background: #F9F7FF; /* Very Light Purple Tint */
|
|
--border-color: #EAE6FF; /* Light Purple-Gray Border */
|
|
--success-color: #4CD5B0; /* Minty Green */
|
|
|
|
--shadow: 0 4px 10px rgba(123, 45, 255, 0.08);
|
|
--shadow-lg: 0 10px 25px rgba(123, 45, 255, 0.12);
|
|
|
|
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
--gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
line-height: 1.6;
|
|
color: var(--text-color);
|
|
background-color: var(--background);
|
|
}
|
|
|
|
/* --- Header & Navigation --- */
|
|
.header {
|
|
background: var(--background);
|
|
box-shadow: var(--shadow);
|
|
position: fixed;
|
|
width: 100%;
|
|
top: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.navbar {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 1rem 1.5rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
height: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo a {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.logo img {
|
|
height: 100%;
|
|
width: auto;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: var(--text-color);
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
position: relative;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.nav-links a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--accent-color);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.nav-links a:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.phone-number {
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.language-switch {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--light-background);
|
|
color: var(--primary-color);
|
|
border-radius: 2rem;
|
|
padding: 0.5rem 1rem;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.language-switch i {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.language-switch:hover {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
/* --- Hero Section --- */
|
|
.hero {
|
|
padding: 8rem 1rem 4rem;
|
|
text-align: center;
|
|
background: linear-gradient(rgba(29, 43, 72, 0.7), rgba(29, 43, 72, 0.6)), url('images/hero-bg-ai.webp');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
min-height: 90vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 2.5rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 4.5rem;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
line-height: 1.2;
|
|
color: white;
|
|
font-weight: 800;
|
|
letter-spacing: -1px;
|
|
animation: fadeInUp 1s ease-out;
|
|
}
|
|
|
|
.hero-text {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
font-size: 1.5rem;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
line-height: 1.8;
|
|
font-weight: 400;
|
|
animation: fadeInUp 1s ease-out 0.2s backwards;
|
|
}
|
|
|
|
.hero-features {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
animation: fadeInUp 1s ease-out 0.6s backwards;
|
|
}
|
|
|
|
.hero-feature {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
color: var(--text-color);
|
|
font-weight: 500;
|
|
padding: 0.75rem 1.5rem;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 1rem;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.hero-feature:hover {
|
|
transform: translateY(-5px) scale(1.05);
|
|
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.hero-feature i {
|
|
color: var(--primary-color);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.hero .cta-button {
|
|
font-size: 1.2rem;
|
|
padding: 1.2rem 3.5rem;
|
|
border-radius: 50px;
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
text-decoration: none;
|
|
box-shadow: var(--shadow);
|
|
animation: fadeInUp 1s ease-out 0.4s backwards;
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.hero .cta-button:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: var(--shadow-lg);
|
|
background: var(--gradient-accent);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
/* --- General Section Styling --- */
|
|
section {
|
|
padding: 6rem 1.5rem;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 2.8rem;
|
|
color: var(--text-color);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.section-subtitle {
|
|
text-align: center;
|
|
color: var(--light-text);
|
|
font-size: 1.2rem;
|
|
max-width: 700px;
|
|
margin: 0 auto 4rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
|
|
/* --- Packages Section --- */
|
|
.packages {
|
|
background: var(--light-background);
|
|
}
|
|
|
|
.billing-toggle {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.billing-toggle span {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.toggle-switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 30px;
|
|
}
|
|
|
|
.toggle-switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.toggle-slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: var(--secondary-color);
|
|
transition: .4s;
|
|
border-radius: 34px;
|
|
}
|
|
|
|
.toggle-slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 22px;
|
|
width: 22px;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
background-color: white;
|
|
transition: .4s;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
input:checked + .toggle-slider {
|
|
background: var(--gradient-accent);
|
|
}
|
|
|
|
input:checked + .toggle-slider:before {
|
|
transform: translateX(30px);
|
|
}
|
|
|
|
.yearly-discount {
|
|
background: var(--gradient-accent);
|
|
color: var(--text-color);
|
|
padding: 0.4rem 1rem;
|
|
border-radius: 1rem;
|
|
font-size: 0.8rem;
|
|
margin-left: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.package-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.package-card {
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 1.5rem;
|
|
padding: 2.5rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
transition: all 0.3s ease;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.package-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: var(--shadow-lg);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.package-card h3 {
|
|
font-size: 1.8rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.package-card .subtitle {
|
|
font-size: 1.1rem;
|
|
color: var(--light-text);
|
|
margin: 0.5rem 0 1rem;
|
|
min-height: 44px; /* Align heights */
|
|
}
|
|
|
|
.price-period {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.price {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
line-height: 1;
|
|
}
|
|
|
|
.price span {
|
|
font-size: 1.2rem;
|
|
color: var(--light-text);
|
|
margin-left: 0.3rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.vat-price {
|
|
font-size: 0.9rem;
|
|
color: var(--light-text);
|
|
display: block;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.package-card ul {
|
|
list-style: none;
|
|
margin: 1.5rem 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: left;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.package-card li {
|
|
font-size: 1rem;
|
|
color: var(--text-color);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 0.75rem;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.package-card li::before {
|
|
content: "✓";
|
|
color: var(--success-color);
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
min-width: 20px;
|
|
}
|
|
|
|
.package-button {
|
|
display: inline-block;
|
|
padding: 1rem 2.5rem;
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
transition: all 0.3s ease;
|
|
margin-top: auto;
|
|
border: none;
|
|
}
|
|
|
|
.package-button:hover {
|
|
background: var(--gradient-accent);
|
|
color: var(--text-color);
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.package-card.featured {
|
|
border: 2px solid var(--primary-color);
|
|
transform: scale(1.05);
|
|
z-index: 2;
|
|
}
|
|
|
|
.package-card.featured .package-button {
|
|
background: var(--gradient-primary);
|
|
}
|
|
|
|
.popular-badge {
|
|
position: absolute;
|
|
top: -15px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
padding: 0.7rem 2rem;
|
|
border-radius: 50px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
/* --- Why Us / Benefits Section --- */
|
|
.why-us {
|
|
background: var(--background);
|
|
}
|
|
|
|
.benefits-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.benefit-card {
|
|
background: var(--light-background);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 1.5rem;
|
|
padding: 2rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.benefit-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: var(--shadow);
|
|
background: white;
|
|
}
|
|
|
|
.benefit-icon {
|
|
width: 70px;
|
|
height: 70px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 1.5rem;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.benefit-icon i {
|
|
font-size: 2rem;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.benefit-card h3 {
|
|
color: var(--text-color);
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.benefit-card p {
|
|
color: var(--light-text);
|
|
font-size: 1.1rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* --- Process Section --- */
|
|
.process {
|
|
background: var(--light-background);
|
|
}
|
|
|
|
.process-steps {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
.step {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.step-number {
|
|
width: 4.5rem;
|
|
height: 4.5rem;
|
|
background: var(--gradient-accent);
|
|
color: var(--text-color);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 1.5rem;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
box-shadow: var(--shadow);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.step:hover .step-number {
|
|
transform: scale(1.1) rotate(10deg);
|
|
}
|
|
|
|
.step h3 {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.step p {
|
|
color: var(--light-text);
|
|
}
|
|
|
|
/* --- About Section --- */
|
|
.about {
|
|
background: white;
|
|
}
|
|
|
|
.about-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.about-text h3 {
|
|
font-size: 1.8rem;
|
|
color: var(--primary-color);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.about-text p {
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
color: var(--light-text);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.client-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.client-list li {
|
|
margin-bottom: 1rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.client-list a {
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.about-cta {
|
|
display: inline-block;
|
|
margin-top: 1.5rem;
|
|
padding: 1rem 2rem;
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.about-cta:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
/* --- Contact Section --- */
|
|
.contact {
|
|
background: var(--light-background);
|
|
}
|
|
|
|
.contact-text {
|
|
max-width: 600px;
|
|
margin: 0 auto 2rem;
|
|
font-size: 1.2rem;
|
|
line-height: 1.8;
|
|
color: var(--light-text);
|
|
}
|
|
|
|
.contact-options {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
color: var(--light-text);
|
|
}
|
|
|
|
.contact-options a {
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.contact-options a:hover {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.contact-form {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 3rem;
|
|
background: var(--background);
|
|
border-radius: 20px;
|
|
box-shadow: var(--shadow-lg);
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
.form-group {
|
|
text-align: left;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text-color);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group select,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 12px;
|
|
font-size: 1rem;
|
|
color: var(--text-color);
|
|
background: var(--light-background);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group select:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 3px rgba(123, 45, 255, 0.1);
|
|
background: white;
|
|
}
|
|
|
|
.form-group textarea {
|
|
min-height: 150px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.submit-button {
|
|
padding: 1.2rem 2.5rem;
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 12px;
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.submit-button:hover {
|
|
background: var(--gradient-accent);
|
|
color: var(--text-color);
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
|
|
/* --- Footer --- */
|
|
.footer {
|
|
background: var(--text-color);
|
|
color: white;
|
|
padding: 4rem 2rem 2rem;
|
|
}
|
|
|
|
.footer-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1.5fr;
|
|
gap: 4rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.footer-logo img {
|
|
height: 20px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.footer-logo p {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.footer h4 {
|
|
color: white;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.contact-methods a {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.contact-methods a:hover {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.footer-bottom {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.legal-links {
|
|
display: flex;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.legal-links a {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.legal-links a:hover {
|
|
color: white;
|
|
}
|
|
|
|
/* --- Chatbot Widget --- */
|
|
#chat-widget-button {
|
|
position: fixed;
|
|
bottom: 25px;
|
|
right: 25px;
|
|
width: 60px;
|
|
height: 60px;
|
|
background: var(--gradient-primary);
|
|
border-radius: 50%;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
z-index: 998;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
#chat-widget-button:hover {
|
|
transform: scale(1.1);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
#chat-widget-button img {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
#chat-widget-container {
|
|
position: fixed;
|
|
bottom: 100px;
|
|
right: 25px;
|
|
width: 370px;
|
|
max-width: 90vw;
|
|
height: 70vh;
|
|
max-height: 600px;
|
|
background: white;
|
|
border-radius: 15px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
z-index: 999;
|
|
transform-origin: bottom right;
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
|
|
#chat-widget-container.hidden {
|
|
transform: scale(0);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.chat-header {
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.chat-header h3 {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
|
|
#close-chat-btn {
|
|
background: none;
|
|
border: none;
|
|
color: white;
|
|
font-size: 1.8rem;
|
|
cursor: pointer;
|
|
line-height: 1;
|
|
opacity: 0.8;
|
|
transition: opacity 0.2s ease;
|
|
}
|
|
|
|
#close-chat-btn:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
#chat-messages {
|
|
flex-grow: 1;
|
|
padding: 1rem;
|
|
overflow-y: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.chat-message {
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 18px;
|
|
max-width: 80%;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.bot-message {
|
|
background-color: var(--light-background);
|
|
color: var(--text-color);
|
|
border-bottom-left-radius: 4px;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.user-message {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
border-bottom-right-radius: 4px;
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.typing-indicator {
|
|
align-self: flex-start;
|
|
color: var(--light-text);
|
|
font-style: italic;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#chat-input-form {
|
|
display: flex;
|
|
padding: 1rem;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
#chat-input {
|
|
flex-grow: 1;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 50px;
|
|
padding: 0.75rem 1rem;
|
|
font-size: 1rem;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
#chat-input:focus {
|
|
outline: none;
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
#chat-input-form button {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 50%;
|
|
width: 45px;
|
|
height: 45px;
|
|
margin-left: 0.5rem;
|
|
cursor: pointer;
|
|
font-size: 1.2rem;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
#chat-input-form button:hover {
|
|
background-color: var(--secondary-color);
|
|
}
|
|
|
|
|
|
/* --- Mobile Menu & Responsive --- */
|
|
.menu-toggle {
|
|
display: none;
|
|
font-size: 1.5rem;
|
|
color: var(--text-color);
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.package-grid {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
.package-card.featured {
|
|
grid-column: 1 / -1;
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
font-size: 16px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2.2rem;
|
|
}
|
|
|
|
.section-subtitle {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: block;
|
|
z-index: 1001;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: white;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
transform: translateX(100%);
|
|
transition: transform 0.3s ease-in-out;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.nav-links.active {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.hero {
|
|
padding: 6rem 1rem 4rem;
|
|
min-height: 80vh;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.hero-text {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.hero-features {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.package-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.package-card.featured {
|
|
max-width: 100%;
|
|
transform: scale(1);
|
|
}
|
|
|
|
.benefits-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.process-steps {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.about-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.footer-content {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-bottom {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
#chat-widget-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
bottom: 0;
|
|
right: 0;
|
|
border-radius: 0;
|
|
max-height: 100%;
|
|
}
|
|
|
|
#chat-widget-button {
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
}
|
|
|
|
/* --- Animations --- */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
} |