* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #0277bd;
    --primary-light: #b3e5fc;
    --primary-dark: #01579b;
    --text-color: #333;
    --background-light: #f5f5f5;
    --card-shadow: 0 4px 10px rgba(0,0,0,0.1);
    --transition-standard: all 0.3s ease;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 10px;
    }
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}
h3 {
    font-size: 1.5rem;
}
p {
    margin-bottom: 15px;
}
img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, filter 0.3s;
}
img:hover {
    transform: scale(1.02);
}
section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}
/* Improved Header Styles */
header {
    background: linear-gradient(135deg, #e0f7fa, #b3e5fc);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s, box-shadow 0.3s;
}
header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: rgba(224, 247, 250, 0.95);
    backdrop-filter: blur(5px);
}
.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    transition: font-size 0.3s;
    letter-spacing: 1px;
}
.nav-toggle {
    display: none;
}
header.scrolled .logo {
    font-size: 22px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 30px;
}
nav ul li a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: width 0.3s;
}
nav ul li a:hover {
    color: var(--primary-dark);
}
nav ul li a:hover::after {
    width: 100%;
}
/* Improved Hero Section */
.hero {
    background: url("../assets/images/hero-bg.jfif") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 119, 189, 0.8), rgba(1, 87, 155, 0.8));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 1.3rem;
    margin: 0 auto 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* Improved CTA Button */
.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: #f0f0f0;
}
/* Improved About Section */
.about {
    background-color: var(--background-light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
/* Improved What is Pi-Water Section */
.what-is-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.what-is-content h3 {
    margin-top: 40px;
    width: 100%;
}
/* Improved Benefits Section */
.benefits {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.benefit-card h3 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}
.benefit-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}
/* Improved Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
    box-shadow: var(--card-shadow);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 10px 10px 0 0;
}
.product-details {
    padding: 25px;
}
.product-details h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.product-details .cta-button {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1rem;
}
.product-made-in {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}
.made-in-badge {
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.made-in-badge:hover {
    transform: scale(1.05);
}
/* Improved Testimonials Section */
.testimonials {
    background-color: var(--background-light);
}
.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 350px;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.testimonial-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
}
.testimonial-author {
    font-weight: bold;
    text-align: right;
    color: var(--primary-dark);
}
/* Improved CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}
.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.cta h2::after {
    background-color: white;
}
/* Improved Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 70px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}
.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-light);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a,
.footer-column a {
    color: #b3e5fc;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.footer-column ul li a:hover,
.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}
.footer-column p {
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
/* Animation for page elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.fade-in-visible {
    opacity: 1;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    header.scrolled {
        padding: 6px 0;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        font-size: 22px;
        margin-bottom: 6px;
    }
    header.scrolled .logo {
        font-size: 20px;
    }
    nav ul {
        margin-top: 6px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    nav ul li {
        margin: 0 4px;
    }
    nav ul li a {
        font-size: 13px;
        padding: 4px 6px;
    }
    .about-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    section {
        padding: 60px 0;
    }
    h2 {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 480px) {
    header {
        padding: 8px 0;
    }
    header.scrolled {
        padding: 5px 0;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    nav {
        padding: 5px 0;
    }
    .logo {
        font-size: 20px;
        margin-bottom: 5px;
    }
    nav ul {
        margin-top: 5px;
        gap: 3px;
    }
    nav ul li a {
        font-size: 12px;
        padding: 3px 5px;
    }
}
/* Add hamburger menu for small screens */
@media screen and (max-width: 680px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
        font-size: 22px;
        color: var(--primary-dark);
        background: none;
        border: none;
        padding: 5px 10px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        transition: all 0.3s ease;
        border-radius: 4px;
    }
    .nav-toggle:hover {
        transform: translateY(-50%) scale(1.1);
        background-color: rgba(255, 255, 255, 0.3);
    }
    header.scrolled .nav-toggle {
        font-size: 20px;
        padding: 4px 8px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 10px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        margin-top: 0;
    }
    nav ul.show {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    nav ul li {
        margin: 3px 0;
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        display: block;
        padding: 8px;
        width: 100%;
        font-size: 14px;
    }
    nav {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        height: 42px;
    }
    header.scrolled nav {
        height: 35px;
    }
    .logo {
        text-align: left;
        margin-bottom: 0;
        padding-left: 15px;
        line-height: 1;
        position: relative;
        top: 1px;
    }
}
.filter-details {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}
.filter-details h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.filter-details ul {
    margin-left: 20px;
    margin-bottom: 15px;
}
.filter-details strong {
    color: var(--primary-dark);
}
/* Star Rating System */
.testimonial-rating {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.stars {
    display: inline-flex;
    position: relative;
}
.star {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
    position: relative;
}
.star:last-child {
    margin-right: 0;
}
.star:before, .star:after {
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.star:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}
.star.filled:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}
.star.half-filled:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3ClinearGradient id='half' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='50%25' stop-color='%23FFD700'/%3E%3Cstop offset='50%25' stop-color='%23e0e0e0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23half)' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}
/* Add a subtle animation on hover */
.testimonial-card:hover .star {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/* Adjust testimonial card spacing for the new rating element */
.testimonial-card {
    padding-top: 25px;
}
.testimonial-content {
    margin-top: 5px;
}
/* Product Image Carousel Styles */
.product-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 300px;
}
.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}
.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 0;
}
.carousel-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
.carousel-arrow.prev {
    left: 10px;
}
.carousel-arrow.next {
    right: 10px;
}
.carousel-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary-dark);
    border-right: 2px solid var(--primary-dark);
    display: inline-block;
}
.carousel-arrow.prev::before {
    transform: rotate(-135deg);
    margin-left: 5px;
}
.carousel-arrow.next::before {
    transform: rotate(45deg);
    margin-right: 5px;
}
/* Responsive adjustments for carousel */
@media screen and (max-width: 480px) {
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}
/* Order Request Form Styles */
.order-request {
    background-color: var(--background-light);
    padding: 80px 0;
}
.form-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color);
}
.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}
.radio-group {
    display: flex;
    gap: 20px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.form-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.form-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 160px;
    width: 180px;
    height: 48px;
    text-align: center;
    box-sizing: border-box;
}
.form-buttons .cta-button.buy-now {
    background-color: #2563eb;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.form-buttons .cta-button.contact-us {
    background-color: #d32f2f;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.25);
}
.form-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.form-buttons .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-buttons .btn-text {
    font-weight: bold;
    white-space: nowrap;
}
@media screen and (max-width: 600px) {
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .form-buttons .cta-button {
        width: 100%;
    }
}
/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    top: 50%;
    right: 0;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s, right 0.5s, box-shadow 0.3s, background 0.3s;
    background: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
}
.floating-action-buttons.fab-visible {
    opacity: 1;
    pointer-events: auto;
    right: 0;
}
.floating-action-buttons .fab-btn {
    width: 48px;
    height: 160px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    opacity: 0.97;
    position: relative;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition: box-shadow 0.2s, outline 0.2s, background 0.2s, transform 0.18s;
    pointer-events: auto;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}
.floating-action-buttons .fab-btn.buy-now {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 8px #2563eb22;
}
.floating-action-buttons .fab-btn.contact-us {
    background: #d32f2f;
    color: #fff;
    box-shadow: 0 2px 8px #d32f2f22;
}
.floating-action-buttons .fab-btn:focus {
    outline: none;
    box-shadow: none;
}
.floating-action-buttons .fab-btn:active,
.floating-action-buttons .fab-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px 0 rgba(31,38,135,0.22);
    filter: brightness(1.08);
}
.floating-action-buttons .fab-btn .btn-text {
    display: block;
    font-size: 1.05rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 1px 2px #0002;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0 auto;
    padding: 0;
}
.fab-tooltip { display: none; }
.floating-action-buttons .fab-divider { display: none; }
@media screen and (max-width: 700px) {
    .floating-action-buttons {
        top: 30%;
        right: 0;
        left: auto;
        bottom: auto;
        transform: translateY(0);
        gap: 10px;
        padding: 0;
        border-radius: 0;
    }
    .floating-action-buttons .fab-btn {
        width: 38px;
        height: 120px;
        font-size: 0.95rem;
    }
}
@keyframes fab-fade-in {
    from { opacity: 0; right: 0; }
    to { opacity: 1; right: 0; pointer-events: auto; }
}
/* Google Form Container */
.google-form-container {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 30px auto;
}
.google-form-container iframe {
    display: block;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    transition: all 0.3s ease;
}
.form-fallback {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #777;
}
.form-fallback a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}
.form-fallback a:hover {
    color: var(--primary-dark);
}
@media screen and (max-width: 768px) {
    .google-form-container iframe {
        height: 1100px; /* Taller for mobile views */
    }
}
/* Section Buttons */
.section-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.section-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 160px;
    width: 180px;
    height: 48px;
    text-align: center;
    box-sizing: border-box;
}
.section-buttons .cta-button.buy-now {
    background-color: #2563eb;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.section-buttons .cta-button.contact-us {
    background-color: #d32f2f;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.25);
}
.section-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.section-buttons .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.section-buttons .btn-text {
    font-weight: bold;
    white-space: nowrap;
}
@media screen and (max-width: 600px) {
    .section-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .section-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
}
/* Subsection Buttons */
.subsection-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 30px;
}
.subsection-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 140px;
    width: 150px;
    height: 42px;
    text-align: center;
    box-sizing: border-box;
}
.subsection-buttons .cta-button.buy-now {
    background-color: #2563eb;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.subsection-buttons .cta-button.contact-us {
    background-color: #d32f2f;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.25);
}
.subsection-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.subsection-buttons .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.subsection-buttons .btn-icon svg {
    width: 16px;
    height: 16px;
}
.subsection-buttons .btn-text {
    font-weight: bold;
    white-space: nowrap;
}
@media screen and (max-width: 600px) {
    .subsection-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .subsection-buttons .cta-button {
        width: 100%;
        max-width: 220px;
    }
}
/* Contact Section Styles */
.contact-heading {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}
.contact-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
    text-align: center;
    letter-spacing: 0.5px;
}
.contact-details {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 18px;
    background-color: rgba(0, 119, 189, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.contact-icon svg {
    width: 24px;
    height: 24px;
}
.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background-color: rgba(0, 119, 189, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.contact-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-text p {
    margin: 0;
    line-height: 1.6;
    padding: 3px 0;
    font-size: 15px;
}
.contact-text p:first-child {
    padding-top: 0;
}
.contact-text p:last-child {
    padding-bottom: 0;
}
.contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding: 0 5px;
}
.contact-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}
.contact-button span {
    position: relative;
    z-index: 1;
}
.buy-now-button {
    background-color: #2563eb;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.contact-us-button {
    background-color: #d32f2f;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.25);
}
.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.buy-now-button:hover {
    background-color: #1d4ed8;
}
.contact-us-button:hover {
    background-color: #c62828;
}
.contact-button .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-button .btn-text {
    font-weight: bold;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-map {
        height: 300px;
    }
    .contact-buttons {
        flex-direction: column;
    }
}
.contact-info a {
    color: #b3e5fc;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 2px;
}
.contact-info a:hover {
    color: white;
}
.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}
.contact-info a:hover::after {
    width: 100%;
}
/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.social-links a:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.social-links svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.social-links a:hover svg {
    transform: scale(1.2);
}
@media screen and (max-width: 480px) {
    .social-links {
        gap: 15px;
    }
    .social-links a {
        width: 35px;
        height: 35px;
    }
    .social-links svg {
        width: 20px;
        height: 20px;
    }
}
