* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
animation: pageLoad 0.6s ease-in-out;
}

@keyframes pageLoad {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

/* Header */
header {
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
color: white;
padding: 0.5rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
gap: 1.5rem;
}

.logo {
font-size: 1.8rem;
font-weight: bold;
text-decoration: none;
color: white;
display: flex;
align-items: center;
gap: 0.8rem;
flex-shrink: 0;
}

.logo img {
width: 70px;
height: 70px;
object-fit: contain;
}

.logo-text {
display: flex;
flex-direction: column;
line-height: 1.1;
font-size: 0.9rem;
}

.nav-links {
display: flex;
gap: 1rem;
list-style: none;
margin-left: 1.5rem;
flex: 1;
flex-wrap: wrap;
align-items: center;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: opacity 0.3s;
white-space: nowrap;
}

.nav-links a:hover {
opacity: 0.8;
}

.cta-button {
background: white;
color: #E81B3E;
padding: 0.65rem 1.4rem;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: transform 0.3s, box-shadow 0.3s;
flex-shrink: 0;
}

.call-center-btn {
background: transparent;
color: white;
border: 2px solid white;
padding: 0.5rem 1.1rem;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s;
flex-shrink: 0;
}

.call-center-btn:hover {
background: white;
color: #E81B3E;
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
padding: 120px 2rem 80px;
margin-top: 70px;
position: relative;
overflow: visible;
}

.hero-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.hero-text h1 {
font-size: 3rem;
color: white;
margin-bottom: 1rem;
margin-top: 0;
animation: fadeInUp 1s;
}

.hero-logo {
width: 350px;
height: auto;
margin-bottom: 1.5rem;
margin-left: -15px;
display: block;
animation: fadeInUp 1s 0.2s both;
transform: translateY(-30px);
}

.hero-text p {
font-size: 1.3rem;
color: rgba(255,255,255,0.9);
margin-bottom: 2rem;
}

.search-box {
background: white;
padding: 1rem;
border-radius: 50px;
display: flex;
gap: 1rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
animation: fadeInUp 1s 0.2s both;
}

.search-box input {
flex: 1;
border: none;
outline: none;
font-size: 1rem;
padding: 0.5rem 1rem;
}

.search-box button {
background: #E81B3E;
color: white;
border: none;
padding: 0.75rem 2rem;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
}

.search-box button:hover {
background: #c01530;
}

.hero-image {
position: relative;
animation: fadeInRight 1s;
height: 500px;
overflow: visible;
}

.hero-curve {
position: absolute;
width: 65%;
height: 500px;
right: 0;
top: 0;
object-fit: cover;
object-position: left;
z-index: 10;
}

.food-burger,
.food-pizza,
.food-hotdog {
position: absolute;
object-fit: contain;
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
z-index: 20;
}

.food-burger {
width: 360px;
height: 360px;
top: -50px;
right: 150px;
animation: float1 3.5s ease-in-out infinite;
}

.food-pizza {
width: 480px;
height: 480px;
top: 50px;
right: -300px;
animation: float2 3s ease-in-out infinite;
}

.food-hotdog {
width: 210px;
height: 210px;
bottom: 20px;
left: 150px;
animation: float3 2.8s ease-in-out infinite;
}

/* Features */
.features {
padding: 80px 2rem;
background: #f8f9fa;
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}

.features-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.feature-card {
background: white;
padding: 2rem;
border-radius: 15px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
cursor: pointer;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.feature-card h3 {
color: #E81B3E;
margin-bottom: 1rem;
}

/* Cities Section */
.cities {
padding: 80px 2rem;
background: white;
}

.cities-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 3rem 2rem;
align-items: start;
justify-content: center;
}

.city-card {
position: relative;
border-radius: 0;
overflow: visible;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 0;
color: #333;
font-weight: bold;
text-shadow: none;
background: transparent;
}

.city-card:hover {
transform: translateY(-5px);
box-shadow: none;
}

.city-card-1 { background: transparent; }
.city-card-2 { background: transparent; }
.city-card-3 { background: transparent; }
.city-card-4 { background: transparent; }

.city-title {
font-size: 1.8rem;
margin: 0 0 0.8rem 0;
font-weight: 700;
color: #333;
}

.city-card-small .city-title {
font-size: 1rem;
}

.city-description {
font-size: 1rem;
margin: 0;
opacity: 0.7;
font-weight: 500;
color: #666;
}

/* Mobile App Section */
.mobile-app-section {
background: #ffffff;
padding: 80px 2rem;
margin: 60px 0;
}

.mobile-app-container {
max-width: 1200px;
margin: 0 auto;
background: white;
border: 2px solid #E81B3E;
border-radius: 30px;
padding: 60px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 4rem;
box-shadow: 0 10px 40px rgba(232, 27, 62, 0.08);
}

.mobile-app-content {
flex: 1;
}

.mobile-app-content h2 {
font-size: 2.5rem;
color: #1a1a1a;
margin-bottom: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.mobile-app-content p {
font-size: 1.1rem;
color: #666;
line-height: 1.8;
margin-bottom: 2.5rem;
}

.mobile-app-buttons {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
}

.app-store-btn,
.play-store-btn {
display: flex;
align-items: center;
gap: 0.8rem;
padding: 1rem 1.8rem;
background: white;
color: #1a1a1a;
text-decoration: none;
border-radius: 15px;
font-weight: 700;
font-size: 1rem;
transition: all 0.3s ease;
border: 2px solid #E81B3E;
cursor: pointer;
}

.app-store-btn:hover,
.play-store-btn:hover {
background: #E81B3E;
color: white;
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(232, 27, 62, 0.3);
}

.app-store-btn svg,
.play-store-btn svg {
width: 24px;
height: 24px;
}

/* Footer */
footer {
background: #1a1a1a;
color: white;
padding: 60px 0 20px;
margin-top: 0;
overflow: visible !important;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: grid !important;
grid-template-columns: repeat(4, minmax(200px, 1fr)) !important;
gap: 1rem;
margin-bottom: 2rem;
}

.footer-content .footer-col {
display: flex !important;
flex-direction: column !important;
min-width: 0 !important;
width: 100% !important;
}

.footer-section {
display: flex;
flex-direction: column;
}

.footer-section:nth-child(2) {
margin-left: 13rem;
}

.footer-section:nth-child(3) {
margin-left: 7.5rem;
}

.footer-col {
display: flex !important;
flex-direction: column !important;
min-width: 0 !important;
width: 100% !important;
}

.footer-section h3 {
color: #E81B3E;
margin-bottom: 0.6rem;
font-size: 1.1rem;
white-space: nowrap;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section a {
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: color 0.3s ease;
font-size: 0.95rem;
}

.footer-section a:hover {
color: #E81B3E;
}

.footer-section p {
color: rgba(255,255,255,0.7);
line-height: 1.6;
margin-bottom: 1rem;
}

.footer-section img {
width: 50px;
height: 50px;
object-fit: contain;
margin-bottom: 1rem;
}

.footer-section h4 {
margin: 0 0 1rem 0;
font-size: 1.3rem;
}

.footer-logo {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 1rem;
}

.footer-logo img {
width: 40px;
height: 40px;
object-fit: contain;
filter: brightness(0) invert(1);
}

.footer-logo-text {
font-size: 1.2rem;
font-weight: bold;
}

.social-links {
display: flex;
gap: 1.2rem;
margin-top: 1.5rem;
}

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background: rgba(255,255,255,0.15);
border-radius: 50%;
transition: all 0.3s ease;
color: white;
text-decoration: none;
font-size: 1rem;
border: 2px solid rgba(255,255,255,0.2);
}

.social-links a:hover {
border-color: #E81B3E;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(232, 27, 62, 0.3);
}

.copyright {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.5);
font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes float1 {
0%, 100% {
transform: translateY(0) rotate(-8deg);
}
50% {
transform: translateY(-18px) rotate(-5deg);
}
}

@keyframes float2 {
0%, 100% {
transform: translateY(0) rotate(6deg);
}
50% {
transform: translateY(-15px) rotate(8deg);
}
}

@keyframes float3 {
0%, 100% {
transform: translateY(0) rotate(-5deg);
}
50% {
transform: translateY(-20px) rotate(-2deg);
}
}

@keyframes floatIcon1 {
0%, 100% {
transform: translateY(0) scale(1) rotate(0deg);
}
50% {
transform: translateY(-20px) scale(1.1) rotate(5deg);
}
}

@keyframes floatIcon2 {
0%, 100% {
transform: translateY(0) scale(1);
}
50% {
transform: translateY(-25px) scale(1.15);
}
}

@keyframes floatIcon3 {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-18px) rotate(-8deg);
}
}

@keyframes floatIcon4 {
0%, 100% {
transform: translateX(0) rotate(0deg);
}
50% {
transform: translateX(15px) rotate(10deg);
}
}

/* Responsive */
@media (max-width: 1024px) {
nav {
padding: 0 1.5rem;
gap: 1rem;
}

.nav-links {
margin-left: 1rem;
gap: 0.8rem;
}

.nav-links a {
font-size: 0.85rem;
}

.cta-button,
.call-center-btn {
padding: 0.5rem 1rem;
font-size: 0.85rem;
}

.logo img {
width: 60px;
height: 60px;
}
}

@media (max-width: 768px) {
nav {
padding: 0 1rem;
gap: 0.8rem;
flex-wrap: wrap;
}

.logo img {
width: 50px;
height: 50px;
}

.nav-links {
display: none;
}

.cta-button,
.call-center-btn {
padding: 0.45rem 0.9rem;
font-size: 0.8rem;
}

.hero-content,
.app-content {
grid-template-columns: 1fr;
}

.hero-text h1 {
font-size: 2rem;
}

.hero-logo {
width: 280px;
margin-left: -10px;
}

.search-box {
flex-direction: column;
}

.search-box input {
width: 100%;
}

.cities-grid {
grid-template-columns: repeat(6, 1fr);
grid-auto-rows: 200px;
}

.city-card-large {
grid-column: span 1;
}

.city-card-medium {
grid-column: span 1;
}

.city-card-small {
grid-column: span 1;
}

.city-title {
font-size: 1.3rem;
}

.mobile-app-container {
flex-direction: column;
padding: 40px 2rem;
border-radius: 20px;
}

.mobile-app-content h2 {
font-size: 1.8rem;
}

.mobile-app-buttons {
flex-direction: column;
width: 100%;
}

.app-store-btn,
.play-store-btn {
width: 100%;
justify-content: center;
}

.footer-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
header {
padding: 0.3rem 0;
}

nav {
padding: 0 0.8rem;
gap: 0.5rem;
flex-direction: column;
align-items: stretch;
}

.logo {
justify-content: center;
margin-bottom: 0.5rem;
}

.logo img {
width: 45px;
height: 45px;
}

.cta-button,
.call-center-btn {
width: 100%;
text-align: center;
padding: 0.5rem 0.8rem;
font-size: 0.75rem;
margin: 0.2rem 0;
}

.hero {
padding: 80px 1rem 60px;
}

.hero-text h1 {
font-size: 1.5rem;
margin-bottom: 0.8rem;
}

.hero-text p {
font-size: 1.05rem;
margin-bottom: 1.5rem;
}

.hero-logo {
width: 240px;
margin-bottom: 1rem;
margin-left: auto;
margin-right: auto;
}

.search-box {
flex-direction: column;
padding: 0.8rem;
border-radius: 12px;
gap: 0.8rem;
}

.search-box input {
width: 100%;
font-size: 0.9rem;
}

.search-box button {
width: 100%;
padding: 0.6rem 1rem;
font-size: 0.85rem;
}

.cities-grid {
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 120px;
gap: 0.5rem;
}

.city-title {
font-size: 0.85rem;
}

.mobile-app-container {
padding: 30px 1.5rem;
}

.mobile-app-content h2 {
font-size: 1.4rem;
}

.mobile-app-buttons {
gap: 0.8rem;
}

.app-store-btn,
.play-store-btn {
padding: 0.6rem 1rem;
font-size: 0.8rem;
}
}

/* About Page */
.about-section {
padding: 80px 20px;
background: #f9f9f9;
}

.about-container {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 50px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
font-size: 2.5rem;
color: #1a1a1a;
margin-bottom: 2rem;
text-align: center;
}

.about-section h2 {
font-size: 1.5rem;
color: #E81B3E;
margin-top: 2rem;
margin-bottom: 1rem;
}

.about-content {
color: #333;
line-height: 1.8;
}

.about-content p {
margin-bottom: 1.5rem;
font-size: 1rem;
text-align: justify;
}

.features-list {
list-style: none;
padding-left: 0;
margin: 1.5rem 0;
}

.features-list li {
padding: 12px 0;
padding-left: 30px;
position: relative;
font-size: 1.05rem;
}

.features-list li:before {
content: "✓";
position: absolute;
left: 0;
color: #E81B3E;
font-weight: bold;
font-size: 1.3rem;
}

@media (max-width: 768px) {
.about-section {
padding: 40px 20px;
}

.about-container {
padding: 30px 20px;
}

.about-section h1 {
font-size: 2rem;
}

.about-section h2 {
font-size: 1.3rem;
}

.about-content p {
text-align: left;
}
}

/* FAQ Page */
.faq-section {
padding: 80px 20px;
background: #f9f9f9;
}

.faq-container {
max-width: 900px;
margin: 0 auto;
}

.faq-title {
font-size: 2.5rem;
color: #1a1a1a;
margin-bottom: 1rem;
margin-top: 2rem;
text-align: center;
}

.faq-subtitle {
font-size: 1.1rem;
color: #666;
text-align: center;
margin-bottom: 3rem;
}

.faq-search-box {
margin-bottom: 2rem;
text-align: center;
}

.faq-search-input {
width: 100%;
max-width: 500px;
padding: 12px 20px;
font-size: 1rem;
border: 2px solid #E81B3E;
border-radius: 50px;
outline: none;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(232, 27, 62, 0.1);
}

.faq-search-input:focus {
border-color: #E81B3E;
box-shadow: 0 4px 16px rgba(232, 27, 62, 0.2);
}

.faq-search-input::placeholder {
color: #999;
}

.faq-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.faq-item {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
border-left: 5px solid #E81B3E;
transition: all 0.3s ease;
}

.faq-item:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
transform: translateY(-2px);
}

.faq-question {
color: #E81B3E;
font-size: 1.2rem;
margin-bottom: 1rem;
cursor: pointer;
}

.faq-answer {
color: #555;
line-height: 1.8;
font-size: 1rem;
}

@media (max-width: 768px) {
.faq-title {
font-size: 2rem;
}

.faq-subtitle {
font-size: 1rem;
}

.faq-item {
padding: 1.5rem;
}

.faq-question {
font-size: 1.1rem;
}
}

/* Corporate Solutions Page */
.corporate-hero {
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
padding: 100px 20px;
text-align: center;
margin-top: 70px;
}

.corporate-hero-content h1 {
font-size: 3rem;
color: white;
margin-bottom: 1rem;
}

.corporate-hero-content p {
font-size: 1.3rem;
color: rgba(255, 255, 255, 0.9);
}

.corporate-container {
max-width: 1100px;
margin: 0 auto;
}

.corporate-intro {
padding: 80px 20px;
background: #f9f9f9;
text-align: center;
}

.corporate-intro h2 {
font-size: 2.2rem;
color: #1a1a1a;
text-align: center;
margin-bottom: 1rem;
}

.corporate-intro > p {
font-size: 1.1rem;
color: #666;
text-align: center;
margin: 0 auto 4rem;
line-height: 1.8;
max-width: 790px;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 4rem;
}

.benefit-item {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: left;
transition: all 0.3s ease;
border-left: 5px solid #E81B3E;
position: relative;
overflow: hidden;
}

.benefit-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #E81B3E 0%, #FF5A7E 100%);
}

.benefit-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(232, 27, 62, 0.2);
}

.benefit-item h3 {
color: #E81B3E;
margin-bottom: 0.8rem;
font-size: 1.2rem;
margin-top: 0;
}

.benefit-item p {
color: #666;
line-height: 1.6;
}

.corporate-packages {
padding: 80px 20px;
background: white;
text-align: center;
}

.corporate-packages h2 {
font-size: 2.2rem;
color: #1a1a1a;
text-align: center;
margin-bottom: 1rem;
}

.corporate-packages > p {
font-size: 1.1rem;
color: #666;
text-align: center;
margin: 0 auto 4rem;
line-height: 1.8;
max-width: 790px;
}

.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.package-card {
background: white;
border: 2px solid #e0e0e0;
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.package-card:hover {
border-color: #E81B3E;
box-shadow: 0 5px 20px rgba(232, 27, 62, 0.2);
}

.package-card.featured {
border-color: #E81B3E;
box-shadow: 0 5px 20px rgba(232, 27, 62, 0.2);
}

.package-header {
background: #f9f9f9;
padding: 2rem;
position: relative;
}

.featured-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: #E81B3E;
color: white;
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: bold;
}

.package-card h3 {
color: #1a1a1a;
margin-bottom: 0.5rem;
font-size: 1.5rem;
}

.package-price {
color: #E81B3E;
font-size: 1.1rem;
font-weight: bold;
}

.package-features {
list-style: none;
padding: 2rem;
flex-grow: 1;
}

.package-features li {
padding: 0.8rem 0;
color: #666;
border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
border-bottom: none;
}

.package-cta {
display: block;
padding: 1rem;
background: #f9f9f9;
color: #E81B3E;
text-align: center;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
border-top: 1px solid #f0f0f0;
}

.package-cta:hover {
background: #f0f0f0;
}

.package-cta.featured-cta {
background: #E81B3E;
color: white;
border-top: none;
}

.package-cta.featured-cta:hover {
background: #d41633;
}

.corporate-why {
padding: 80px 20px;
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
color: white;
text-align: center;
}

.corporate-why h2 {
font-size: 2.2rem;
margin-bottom: 0.5rem;
}

.corporate-why > p {
font-size: 1.1rem;
margin-bottom: 5rem;
opacity: 0.95;
}

.contact-methods {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
margin-bottom: 3rem;
}

.contact-method {
background: rgba(255, 255, 255, 0.15);
padding: 1.5rem;
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-method:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-method h3 {
margin-bottom: 0.8rem;
font-size: 1.1rem;
font-weight: 600;
}

.contact-method a {
color: white;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
font-size: 0.95rem;
}

.contact-method a:hover {
text-decoration: underline;
}

.contact-method p {
margin: 0.6rem 0;
opacity: 0.9;
font-size: 0.9rem;
}

.contact-cta {
display: inline-block;
padding: 1.2rem 3rem;
background: white;
color: #E81B3E;
text-decoration: none;
font-weight: bold;
border-radius: 50px;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.contact-cta:hover {
transform: translateY(-3px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
.corporate-hero-content h1 {
font-size: 2rem;
}

.corporate-intro h2,
.corporate-packages h2,
.corporate-why h2 {
font-size: 1.8rem;
}

.package-card {
margin-bottom: 1rem;
}

.contact-cta {
padding: 1rem 2rem;
font-size: 1rem;
}
}

/* Contact Page Styles */
.contact-hero {
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
padding: 6rem 2rem;
text-align: center;
color: white;
}

.contact-hero-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 700;
}

.contact-hero-content p {
font-size: 1.3rem;
opacity: 0.95;
}

.contact-info {
max-width: 1100px;
margin: 0 auto;
padding: 4rem 2rem;
}

.contact-info > h2 {
font-size: 2.2rem;
margin-bottom: 0.8rem;
text-align: center;
}

.contact-info > p {
text-align: center;
font-size: 1.1rem;
margin-bottom: 3rem;
max-width: 790px;
margin-left: auto;
margin-right: auto;
opacity: 0.9;
}

.contact-container {
width: 100%;
margin-bottom: 3rem;
}

.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.info-card {
background: rgba(255, 255, 255, 0.08);
padding: 2rem;
border-radius: 12px;
border: 1px solid rgba(232, 27, 62, 0.2);
transition: all 0.3s ease;
}

.info-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
border-color: rgba(232, 27, 62, 0.4);
box-shadow: 0 8px 32px rgba(232, 27, 62, 0.15);
}

.info-card h3 {
font-size: 1.2rem;
margin-bottom: 1rem;
color: #E81B3E;
font-weight: 600;
}

.info-card p {
margin: 0.8rem 0;
line-height: 1.6;
opacity: 0.9;
}

.info-card a {
color: #E81B3E;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.info-card a:hover {
text-decoration: underline;
color: #FF5A7E;
}

.info-note {
font-size: 0.9rem;
opacity: 0.7;
margin-top: 0.5rem;
}

.contact-cta-section {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.contact-cta-section .cta-button {
padding: 1rem 2.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
display: inline-block;
}

.cta-primary {
background: linear-gradient(135deg, #E81B3E 0%, #FF5A7E 100%);
color: white;
}

.cta-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(232, 27, 62, 0.4);
}

.cta-secondary {
border: 2px solid #E81B3E;
color: #E81B3E;
background: transparent;
}

.cta-secondary:hover {
background: rgba(232, 27, 62, 0.1);
transform: translateY(-3px);
}

@media (max-width: 768px) {
.contact-hero-content h1 {
font-size: 2rem;
}

.contact-hero-content p {
font-size: 1rem;
}

.contact-info {
padding: 2rem 1rem;
}

.contact-info > h2 {
font-size: 1.8rem;
}

.info-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.contact-cta-section {
flex-direction: column;
}

.cta-button {
width: 100%;
text-align: center;
}
}

/* Inline Edit Mode Styles */
.editable-field {
    position: relative;
    display: inline-block;
    width: 100%;
}

.edit-icon {
    position: absolute;
    top: 0;
    right: -2.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editable-field:hover .edit-icon {
    opacity: 0.7;
}

.edit-icon:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

.editable-field.edit-mode > *:not(.edit-icon):not(.edit-input):not(.save-edit-btn) {
    display: none;
}

.editable-field.edit-mode .edit-icon {
    display: none;
}

.edit-input {
    display: none;
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E81B3E;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
    background: white;
    color: #1a1a1a;
}

.editable-field.edit-mode .edit-input {
    display: block;
}

.save-edit-btn {
    display: none;
    background: #E81B3E;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.editable-field.edit-mode .save-edit-btn {
    display: inline-block;
}

.save-edit-btn:hover {
    background: #c91733;
    transform: translateY(-1px);
}

.cancel-edit-btn {
    display: none;
    background: #999;
    color: white;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.editable-field.edit-mode .cancel-edit-btn {
    display: inline-block;
}

.cancel-edit-btn:hover {
    background: #666;
}

/* Hero-specific inline editing */
.hero-text .editable-field {
    display: block;
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-text .editable-field:hover .edit-icon {
    opacity: 1;
}

.hero-text .edit-icon {
    position: absolute;
    top: 0.5rem;
    right: 0;
    font-size: 1.3rem;
}

.hero-text .edit-input {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-text .editable-field h1 + .edit-icon {
    top: 1rem;
}

/* Section title inline editing */
.section-title.editable-field {
    display: block;
    position: relative;
    margin-bottom: 3rem;
}

.section-title .edit-icon {
    position: absolute;
    right: 0;
    top: 0.5rem;
    opacity: 0;
}

.section-title:hover .edit-icon {
    opacity: 1;
}
