:root {
    --primary: #5A9251;
    --primary-dark: #4A7A42;
    --primary-light: #74B06A;

    --secondary: #1E3A2F;
    --secondary-dark: #0F241C;
    --secondary-light: #2F5D4A;

    --accent: #01F351;
    --accent-dark: #00C944;
    --accent-light: #4CFF8A;

    --dark: #0F241C;
    --dark-light: #2F5D4A;

    --light: #F3FFF5;
    --gray: #7A8F85;

    --white: #ffffff;
    --black: #000000;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-green: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);

    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Top */
.header-top {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0px 4px 20px rgba(90, 146, 81, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 90px;
    width: 130px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
    border-radius: 3px;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(90, 146, 81, 0.25),
        rgba(1, 243, 81, 0.15)
    ),
    url('images/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: var(--black);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(90, 146, 81, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    box-shadow: 0 4px 15px rgba(1, 243, 81, 0.3);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
}

/* Booking Form */
.booking-form {
    background-color: var(--light);
    padding: 100px 0 50px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(90, 146, 81, 0.2);
    padding: 40px;
    position: relative;
    border-top: 5px solid var(--accent);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    font-size: 18px;
}

.form-tabs {
    display: flex;
    margin-bottom: 30px;
    background: #E0F2FE;
    border-radius: var(--radius);
    padding: 5px;
    border: 1px solid var(--primary-light);
}

.tab {
    flex: 1;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--dark);
}

.tab.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(90, 146, 81, 0.3);
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

input, select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #E0F2FE;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    font-size: 16px;
    background-color: #F8FAFC;
}

input:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(90, 146, 81, 0.2);
    outline: none;
    background-color: var(--white);
}

.book-now-btn {
    text-align: center;
    margin-top: 30px;
}

/* Loading and Messages */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.loading i {
    font-size: 30px;
    color: var(--primary);
}

.fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    display: none;
    background-color: #FEE2E2;
    color: #DC2626;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #DC2626;
}

.success-message {
    display: none;
    background-color: #D1FAE5;
    color: #059669;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #059669;
}

/* Confirmation Message */
.confirmation-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.confirmation-content {
    background-color: white;
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--primary);
}

.confirmation-content i {
    font-size: 70px;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.confirmation-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.confirmation-content p {
    margin-bottom: 25px;
    color: var(--dark-light);
    font-size: 17px;
    line-height: 1.7;
}

.confirmation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 18px;
}

/* About Us */
.about {
    background-color: #F0F9FF;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 3px solid var(--white);
}

.about-badge h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.about-badge p {
    font-size: 14px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-light);
    font-size: 17px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.about-feature i {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature div h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

/* Services */
.services {
    background-color: #F8FAFC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(90, 146, 81, 0.1);
    transition: var(--transition);
    border: 2px solid #E0F2FE;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(90, 146, 81, 0.2);
    border-color: var(--primary-light);
}

.service-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    color: var(--dark-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Tariff */
.tariff {
    background-color: #E0F2FE;
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tariff-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(90, 146, 81, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid #E0F2FE;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(90, 146, 81, 0.2);
}

.tariff-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.tariff-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.tariff-header {
    background: var(--gradient);
    color: var(--white);
    padding: 25px;
}

.tariff-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.tariff-body {
    padding: 30px 20px;
}

.tariff-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.tariff-price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.tariff-features {
    list-style: none;
    margin-bottom: 30px;
}

.tariff-features li {
    padding: 12px 0;
    border-bottom: 1px solid #E0F2FE;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tariff-features li i {
    color: var(--primary);
}

/* Download App Section */
.download-app {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
}

.download-title {
    text-align: center;
    margin-bottom: 60px;
}

.download-title h2 {
    font-size: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.download-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.download-title p {
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 18px;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.download-text {
    flex: 1;
}

.download-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.download-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 17px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-btn i {
    font-size: 30px;
}

.app-btn-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.app-btn-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.download-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.download-image img {
    max-width: 100%;
    height: auto;
}

/* Tour Package */
.tour-package {
    background-color: #F0F9FF;
}

.package-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.package-text {
    flex: 1;
}

.package-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.package-text p {
    margin-bottom: 20px;
    color: var(--dark-light);
    line-height: 1.8;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.package-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.package-image {
    flex: 1;
    position: relative;
}

.package-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

/* Gallery */
.gallery {
    background-color: #F8FAFC;
    padding: 100px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--dark);
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(90, 146, 81, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--white);
}

.overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-prev, .lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.lightbox-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.lightbox-caption p {
    font-size: 16px;
    opacity: 0.9;
}

/* Contact */
.contact {
    background-color: #E0F2FE;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-details-box {
    flex: 1;
}

.contact-details-box .contact-details {
    margin-bottom: 40px;
}

.contact-details-box .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 20px rgba(90, 146, 81, 0.1);
    border-left: 4px solid var(--primary);
}

.contact-details-box .contact-item i {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details-box .contact-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details-box .contact-text p, 
.contact-details-box .contact-text a {
    color: var(--dark-light);
    font-size: 17px;
    text-decoration: none;
}

.contact-details-box .contact-text a:hover {
    color: var(--primary);
}

.contact-map {
    flex: 1;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-column p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
}

/* Footer Download Section */
.footer-download {
    text-align: center;
    margin: 50px 0 30px;
    padding: 40px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.footer-download h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-download p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 30px;
}

.footer-app-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 18px 40px;
    border-radius: 60px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-app-btn.google-play {
    background: linear-gradient(135deg, #414141 0%, #000000 100%);
}

.footer-app-btn:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(1, 243, 81, 0.3);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.footer-app-btn i {
    font-size: 45px;
}

.footer-app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-app-text span {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.footer-app-text strong {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.app-features-mini {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-features-mini span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-features-mini span i {
    color: var(--accent);
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* Floating Contact - Bigger Buttons with Text */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-whatsapp, .floating-call {
    width: auto;
    min-width: 160px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition);
    border: 2px solid white;
    padding: 0 20px;
    font-weight: 600;
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.floating-whatsapp:hover, .floating-call:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.floating-whatsapp i, .floating-call i {
    font-size: 1.8rem;
}

.floating-whatsapp span, .floating-call span {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.floating-playstore {
    width: auto;
    min-width: 160px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition);
    border: 2px solid white;
    padding: 0 20px;
    font-weight: 600;
    background: linear-gradient(135deg, #414141 0%, #000000 100%);
}

.floating-playstore:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.floating-playstore i {
    font-size: 1.8rem;
}

.floating-playstore span {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Animation for Play Store button */
.floating-playstore {
    animation: softPulse 2.5s infinite;
}

/* Animation for floating buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
}

.floating-whatsapp {
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    animation: none;
}

/* Pulse animation for Google Play button */
.footer-app-btn.google-play {
    animation: softPulse 2.5s infinite;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(1, 243, 81, 0.4);
        border-color: rgba(1, 243, 81, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .services-grid,
    .tariff-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .package-content,
    .contact-content,
    .download-content {
        flex-direction: column;
    }

    .tariff-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
.floating-playstore {
        min-width: 140px;
        height: 55px;
        padding: 0 15px;
    }
    
    .floating-playstore i {
        font-size: 1.5rem;
    }
    
    .floating-playstore span {
        font-size: 1rem;
    }
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info a {
        justify-content: center;
    }

    .header-content {
        flex-direction: column;
        padding: 15px 0;
    }

    nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
        display: none;
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 15px;
    }

    .hero {
        height: auto;
        min-height: 700px;
        text-align: center;
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .services-grid,
    .tariff-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-features,
    .package-features {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: static;
        margin-top: 20px;
    }

    section {
        padding: 70px 0;
    }

    .floating-contact {
        bottom: 20px;
        right: 15px;
    }
    
    .floating-whatsapp, .floating-call {
        min-width: 140px;
        height: 55px;
        padding: 0 15px;
    }
    
    .floating-whatsapp i, .floating-call i {
        font-size: 1.5rem;
    }
    
    .floating-whatsapp span, .floating-call span {
        font-size: 1rem;
    }
    
    .footer-download h3 {
        font-size: 26px;
    }
    
    .footer-download p {
        font-size: 16px;
    }
    
    .footer-app-btn {
        padding: 15px 30px;
    }
    
    .footer-app-btn i {
        font-size: 35px;
    }
    
    .footer-app-text strong {
        font-size: 20px;
    }
    
    .app-features-mini {
        gap: 15px;
    }
    
    .app-features-mini span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
 .floating-playstore {
        min-width: 130px;
        height: 50px;
    }
    
    .floating-playstore i {
        font-size: 1.3rem;
    }
    
    .floating-playstore span {
        font-size: 0.9rem;
    }
    .form-container {
        padding: 25px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .confirmation-content {
        padding: 30px 20px;
    }
    
    .floating-whatsapp, .floating-call {
        min-width: 130px;
        height: 50px;
    }
    
    .floating-whatsapp i, .floating-call i {
        font-size: 1.3rem;
    }
    
    .floating-whatsapp span, .floating-call span {
        font-size: 0.9rem;
    }
    
    .footer-app-btn {
        width: 100%;
        justify-content: center;
    }
    
    .app-features-mini {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}