:root {
    --primary-color: #10b981;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --shadow: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

* {
    font-family: 'Prompt', sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--light-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-primary);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary:hover::before {
    width: 100%;
}

/* Gradient Button for News */
.btn-gradient-primary {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 15px;
    padding: 14px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: none;
    font-size: 1rem;
}

.btn-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-gradient-primary:hover::before {
    left: 100%;
}

.btn-gradient-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-gradient-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

/* Hero Section with Beautiful Animated Background */
.hero {
    background: var(--gradient-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Animated Background Layer */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 2%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 1%, transparent 40%),
        radial-gradient(circle at 30% 80%, rgba(255,255,255,0.12) 1.5%, transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 3%, transparent 55%),
        radial-gradient(circle at 50% 10%, rgba(255,255,255,0.06) 2.5%, transparent 60%);
  
    z-index: 1;
}

/* Individual Floating Circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255,255,255,0.1);
 
    box-shadow: 0 8px 32px rgba(255,255,255,0.1);
}

.hero-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation: elegantFloat1 16s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    animation: elegantFloat2 14s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
    animation: elegantFloat3 18s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 55%;
    right: 25%;
    animation: elegantFloat4 12s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-circle:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 45%;
    left: 45%;
    animation: elegantFloat5 20s ease-in-out infinite;
    animation-delay: 3s;
}

.hero-circle:nth-child(6) {
    width: 40px;
    height: 40px;
    top: 75%;
    right: 35%;
    animation: elegantFloat6 10s ease-in-out infinite;
    animation-delay: 5s;
}



/* Magical Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    border-radius: 50%;
    animation: magicalFloat linear infinite;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 5%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 8px;
    height: 8px;
    left: 15%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 4px;
    height: 4px;
    left: 25%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    width: 7px;
    height: 7px;
    left: 35%;
    animation-duration: 16s;
    animation-delay: 4s;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    left: 45%;
    animation-duration: 24s;
    animation-delay: 2s;
}

.particle:nth-child(6) {
    width: 9px;
    height: 9px;
    left: 55%;
    animation-duration: 15s;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    width: 4px;
    height: 4px;
    left: 65%;
    animation-duration: 19s;
    animation-delay: 1.5s;
}

.particle:nth-child(8) {
    width: 6px;
    height: 6px;
    left: 75%;
    animation-duration: 17s;
    animation-delay: 3.5s;
}

.particle:nth-child(9) {
    width: 5px;
    height: 5px;
    left: 85%;
    animation-duration: 21s;
    animation-delay: 0.5s;
}

.particle:nth-child(10) {
    width: 7px;
    height: 7px;
    left: 95%;
    animation-duration: 23s;
    animation-delay: 2.5s;
}

@keyframes magicalFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
        transform: translateY(95vh) translateX(10px) rotate(18deg) scale(1);
    }
    25% {
        transform: translateY(75vh) translateX(-20px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translateY(50vh) translateX(30px) rotate(180deg) scale(0.8);
    }
    75% {
        transform: translateY(25vh) translateX(-15px) rotate(270deg) scale(1.1);
    }
    95% {
        opacity: 1;
        transform: translateY(5vh) translateX(5px) rotate(340deg) scale(0.9);
    }
    100% {
        transform: translateY(-10vh) translateX(0px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Shooting Stars Effect */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px white;
    animation: shootingStar linear infinite;
}

.shooting-star:nth-child(11) {
    top: 20%;
    right: 0;
    animation-duration: 3s;
    animation-delay: 2s;
}

.shooting-star:nth-child(12) {
    top: 60%;
    right: 0;
    animation-duration: 2.5s;
    animation-delay: 5s;
}

.shooting-star:nth-child(13) {
    top: 40%;
    right: 0;
    animation-duration: 4s;
    animation-delay: 8s;
}

@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100vw) translateY(50px) scale(0);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 10;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-subtitle p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-subtitle strong {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.hero-subtitle em {
    font-style: italic;
}

.hero-image {

    
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
   
   
}



@keyframes gentleWave {
    0%, 100% {
        background-position-x: 0px;
        transform: scaleY(1);
    }
    50% {
        background-position-x: 600px;
        transform: scaleY(1.1);
    }
}

/* About Description Styling */
.about-description p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-description strong {
    font-weight: 700;
    color: var(--primary-color);
}

.about-description em {
    font-style: italic;
    color: #4b5563;
}

.about-description u {
    text-decoration: underline;
    color: var(--secondary-color);
}

.about-description ul,
.about-description ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-description li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.about-description blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
    background: rgba(16, 185, 129, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.about-description h1,
.about-description h2,
.about-description h3,
.about-description h4,
.about-description h5,
.about-description h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.about-description h1 { font-size: 1.8rem; }
.about-description h2 { font-size: 1.6rem; }
.about-description h3 { font-size: 1.4rem; }
.about-description h4 { font-size: 1.2rem; }
.about-description h5 { font-size: 1.1rem; }
.about-description h6 { font-size: 1rem; }

/* Company Description Styling */
.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.company-description p {
    margin-bottom: 1.5rem;
}

.company-description strong {
    font-weight: 700;
    color: var(--primary-color);
}

.company-description em {
    font-style: italic;
    color: #6b7280;
}

/* Package Description Styling */
.package-description p {
    margin-bottom: 1rem;
}

.package-description strong {
    font-weight: 600;
    color: var(--primary-color);
}

.package-description em {
    font-style: italic;
    color: #4b5563;
}

.package-description ul,
.package-description ol {
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
    padding-left: 2rem;
}

.package-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Sections */
.section {
    padding: 2.5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

/* Stats Section */
.stats {
    background: var(--gradient-secondary);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,200 1000,1000 0,800" fill="rgba(255,255,255,0.05)"/></svg>');
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Features */
.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    height: 6px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

/* Packages - Original Version */
.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.package-card:not(.popular) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
}

.package-card:not(.popular):hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.package-card.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    transform: scale(1.05);
    border: 3px solid #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.package-card.popular::before {
    content: '⭐ แนะนำ';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.package-card.popular .package-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.package-card.popular .package-features li i {
    color: white;
}

/* Customers */
.customer-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.customer-card:hover::before {
    height: 6px;
}

.customer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.customer-card:hover .customer-logo {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.customer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* News Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.1rem;
}

.modal-body img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.news-meta-modal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* News */
.news-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.news-card:hover::before {
    height: 6px;
}

.news-card .card-body {
    background: white;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.contact-card.address::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.contact-card.phone::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-card.email::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.contact-card.hours::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.contact-card:hover::before {
    height: 6px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-card.address .contact-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.contact-card.phone .contact-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-card.email .contact-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.contact-card.hours .contact-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-card p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 30px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

.contact-form-container {
    position: relative;
    z-index: 2;
}

.contact-form-title {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-title h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-form-title p {
    color: #6b7280;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
    font-size: 1.5rem;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-hover);
    color: white;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-circle {
        transform: scale(0.6);
    }
    
    .particle {
        transform: scale(0.7);
    }
    
    .hero-wave {
        height: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-form-section {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .feature-card,
    .customer-card,
    .contact-card {
        padding: 2rem;
    }
    
    .package-card {
        min-height: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.fade-in-delay-1 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 1s linear infinite;
    color: white;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Badge improvements */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

/* Alert improvements */
.alert {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

/* Rating stars */
.rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 1rem;
}

.rating i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.rating i:hover {
    transform: scale(1.2);
}

/* Blockquote styling */
.blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #6b7280;
}

.blockquote p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* List improvements */
.list-unstyled li {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.list-unstyled li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

/* Form improvements */
.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.invalid-feedback {
    color: #dc2626;
    font-weight: 500;
}

.was-validated .form-control:invalid {
    border-color: #dc2626;
}

.was-validated .form-control:valid {
    border-color: var(--primary-color);
}

/* Special effects */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-primary {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
}

/* Hover effects */
.hover-lift {
    transition: var(--transition);
}

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

.hover-grow {
    transition: var(--transition);
}

.hover-grow:hover {
    transform: scale(1.05);
}

/* Custom feature icon improvements */
.feature-icon.small {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.feature-icon.small:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}