/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --light-color: #f9f9f9;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.356);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Warranty Badge */
.warranty-badge-header {
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: warranty-glow 2s infinite alternate;
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--secondary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.contact-btn a {
    background-color: #ff6b35;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid #ff6b35;
    animation: jump 1.8s ease-in-out infinite;
    transition: transform 0.3s ease, background-color 0.25s ease;
    text-decoration: none !important;
}

/* Jump animation */
@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    55% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-4px);
    }
}

/* Hover scale only */
.contact-btn a:hover,
.contact-btn a:focus,
.contact-btn a:active {
    animation: none;
    transform: scale(1.1);
    text-decoration: none !important;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/hero/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-warranty-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-color);
    padding: 15px 25px;
    border-radius: 50px;
    margin: 30px 0;
    gap: 15px;
}

.hero-warranty-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.warranty-years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: var(--secondary-color);
}

.warranty-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-container img {
    transform: scale(1.05);
}

.product-warranty-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.enquiry-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.enquiry-btn:hover {
    background-color: #d35400;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.company-desc {
    margin-bottom: 20px;
    opacity: 0.8;
}

.warranty-badge-footer {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    opacity: 0.7;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.benefit-card h3 {
    color: #2d3436;
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* =========================
   Floating Action Buttons
========================= */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;
    color: #fff;

    z-index: 100;
    overflow: hidden;

    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;

    /* 🌊 Water float animation */
    animation: water-float 6s ease-in-out infinite;
}

/* WhatsApp */
.whatsapp-float {
    background-color: #25d366;
    right: 40px;
    bottom: 40px;
}

/* Call */
.call-float {
    background-color: var(--secondary-color);
    right: 40px;
    bottom: 120px;

    /* Offset timing for natural feel */
    animation-delay: 1.2s;
}

/* Hover – gentle reaction */
.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.12);
}

/* Click */
.whatsapp-float:active,
.call-float:active {
    transform: scale(0.92);
}

/* =========================
   Water Floating Animation
========================= */
@keyframes water-float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-6px) translateX(2px);
    }
    50% {
        transform: translateY(0) translateX(-2px);
    }
    75% {
        transform: translateY(6px) translateX(1px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}


/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Search Box */
.search-container {
    max-width: 600px;
    margin: 30px auto;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 60px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #d35400;
}

.search-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-tags a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 5px 15px;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-tags a:hover {
    background-color: rgba(230, 126, 34, 0.2);
}

/* Additional Styles for All Pages */

/* Page Headers */
.page-header-section,
.products-header-section,
.custom-header-section,
.contact-header-section {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header-content h1,
.products-header-content h1,
.custom-header-content h1,
.contact-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header-content p,
.products-header-content p,
.custom-header-content p,
.contact-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* About Page Styles */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.mv-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mv-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.craftsmanship-list {
    margin: 30px 0;
}

.craft-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.craft-item i {
    color: var(--accent-color);
    margin-top: 5px;
}

.warranty-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.05));
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid var(--accent-color);
}

.warranty-highlight i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

/* Products Page Styles */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.category-filter {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.category-filter.active,
.category-filter:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.load-more-container {
    text-align: center;
    margin: 50px 0;
}

.products-warranty-section {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.05));
    padding: 60px 0;
    margin: 60px 0;
}

.warranty-assurance {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.warranty-icon i {
    font-size: 4rem;
    color: var(--accent-color);
}

.warranty-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.warranty-point {
    display: flex;
    align-items: center;
    gap: 10px;
}

.warranty-point i {
    color: var(--accent-color);
}

.products-cta-section {
    text-align: center;
    padding: 60px 0;
}

/* Modal Styles */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Custom Page Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.custom-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.example-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.example-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.example-info {
    padding: 20px;
}

.warranty-highlight-large {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.warranty-large-icon i {
    font-size: 4rem;
}

.warranty-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input {
    width: auto;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #d35400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.method-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-info-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.map-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-info {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-info ul {
    list-style: none;
    margin-top: 15px;
}

.map-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info li i {
    color: var(--accent-color);
}

.warranty-info {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.05));
    padding: 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.warranty-info-icon i {
    font-size: 4rem;
    color: var(--accent-color);
}

.warranty-contact-methods {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.warranty-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
}

.quick-contact-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    margin-top: 60px;
}

.quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}


/* Home Page Specific Styles */

/* Hero Section Refined */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/hero/index-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-warranty-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-color);
    padding: 20px 35px;
    border-radius: 50px;
    margin: 40px 0;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.hero-warranty-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(230, 126, 34, 0.3), transparent);
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-warranty-badge i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.warranty-years {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    color: var(--secondary-color);
    line-height: 1;
}

.warranty-label {
    font-size: 1.1rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.intro-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.intro-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.intro-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Featured Products */
.featured-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.08);
}

.product-warranty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 40px;
}

.enquiry-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.enquiry-btn:hover {
    background: transparent;
    color: var(--secondary-color);
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

/* Custom Section */
.custom-section {
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.custom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

.custom-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.custom-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.custom-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.custom-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.3rem;
}

.custom-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(230, 126, 34, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



/* Trust Section Styles */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/patterns/trust-pattern.svg') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.trust-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transform: scale(1.1);
    
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.trust-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.trust-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}



.trust-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.warranty-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.warranty-highlight i {
    font-size: 1.1rem;
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.trust-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    color: #ffc107;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.quality-badge i {
    font-size: 1.1rem;
}

.support-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.support-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.support-info i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(230, 126, 34, 0.1);
}

.indicator {
    text-align: center;
    padding: 20px;
    position: relative;
}

.indicator:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0,0,0,0.1);
}

.indicator h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.indicator p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Custom Section with Glow Effects */
.custom-section {
    padding: 120px 0;
    background: rgb(56, 0, 0);
    position: relative;
    overflow: hidden;
}

.custom-glow-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.glow-shard {
    position: absolute;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    animation: floatShard 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.silver-shard-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.silver-shard-2 {
    width: 80px;
    height: 80px;
    bottom: 30px;
    right: 50px;
    animation-delay: 2s;
}

.silver-shard-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -20px;
    animation-delay: 4s;
}

@keyframes floatShard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.custom-content {
    background: rgba(255, 253, 253, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.custom-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,126,34,0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-icon {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(230,126,34,0.5);
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(230,126,34,0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(230,126,34,0.8);
    }
}

.custom-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.custom-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(230,126,34,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #e67e22, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon-glow {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230,126,34,0.2), rgba(230,126,34,0.1));
    border: 2px solid rgba(230,126,34,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #e67e22;
    position: relative;
}

.feature-icon-glow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(230,126,34,0.1);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.feature-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.custom-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.glow-button {
    position: relative;
    overflow: hidden;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.glow-button::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 ease;
}

.glow-button:hover::before {
    left: 100%;
}

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.google-badge i {
    font-size: 2rem;
    color: #4285F4;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-count {
    font-size: 0.9rem;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #e67e22;
    box-shadow: 0 20px 40px rgba(230,126,34,0.15);
}

.google-review {
    border-left: 5px solid #4285F4;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #666;
}

.reviewer-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-source {
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 10px;
}

.google-logo i {
    color: #4285F4;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #e67e22;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Business Info Card */
.business-info-card {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px;
    padding: 30px;
    grid-column: span 1;
}

.business-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.business-header i {
    font-size: 2rem;
    color: #e67e22;
}

.business-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    font-size: 1.2rem;
    color: #e67e22;
    margin-top: 5px;
}

.detail-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-item a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: #ff9c4a;
}

.business-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Premium CTA Section */
.premium-cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.premium-cta-content {
    background: rgba(14, 0, 0, 0.651);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;

}

.cta-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cta-glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,126,34,0.2) 0%, transparent 70%);
    animation: floatGlow 8s ease-in-out infinite;
}

.cta-glow-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.cta-glow-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    animation-delay: 4s;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.cta-icon {
    font-size: 4rem;
    color: #e67e22;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(230,126,34,0.5);
    animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(230,126,34,0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 50px rgba(230,126,34,0.8);
    }
}

.premium-cta-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    background: orange;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.premium-cta-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.business-tagline {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #e67e22;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
    position: relative;
    border-radius: 10px;
}

.business-tagline i {
    color: rgba(230,126,34,0.5);
    font-size: 1.5rem;
    position: absolute;
}

.business-tagline i:first-child {
    top: 15px;
    left: 15px;
}

.business-tagline i:last-child {
    bottom: 15px;
    right: 15px;
}

.business-tagline p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.cta-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.action-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230,126,34,0.3);
    background: rgba(255,255,255,0.08);
}

.action-card i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 20px;
    display: block;
}

.action-card h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.action-link {
    display: inline-block;
    color: #ff9c4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 20px;
    border: 2px solid rgba(230,126,34,0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: rgba(230,126,34,0.1);
    border-color: rgba(230,126,34,0.5);
    transform: scale(1.05);
}

.cta-buttons-premium {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-premium {
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230,126,34,0.3);
}

.btn-premium::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 ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium-outline {
    background: transparent;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(230,126,34,0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: rgba(230,126,34,0.1);
    border-color: rgba(230,126,34,0.8);
    transform: translateY(-3px);
}


/* Customer Reviews Grid */
.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #e67e22;
    box-shadow: 0 20px 40px rgba(230,126,34,0.15);
}

/* Google Review Card */
.google-review-card {
    border-left: 5px solid #4285F4;
    position: relative;
    overflow: hidden;
}

.google-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 0 15px 0 50px;
    transition: all 0.3s ease;
}

.google-review-card:hover::before {
    width: 80px;
    height: 80px;
    background: rgba(66, 133, 244, 0.15);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

/* Customer Info */
.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.review-card:hover .customer-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.customer-info h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Review Details */
.review-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.review-stars {
    color: #FFD700;
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.review-stars i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-platform {
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.review-card:hover .review-platform {
    background: #4285F4;
    color: white;
    border-color: #4285F4;
}

/* Platform Logo */
.platform-logo {
    width: 40px;
    height: 40px;
    background: #4285F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .platform-logo {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

/* Review Content */
.review-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 25px;
    flex-grow: 1;
}

.review-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3.5rem;
    color: #e67e22;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.review-card:hover .review-content::before {
    color: #4285F4;
    opacity: 0.3;
    transform: scale(1.1);
}

/* Review Time */
.review-time {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px dashed #e9ecef;
    margin-top: auto;
}

.review-time i {
    color: #4285F4;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.review-card:hover .review-time i {
    color: #e67e22;
    transform: rotate(360deg);
}

/* Animation for Review Cards */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.review-card {
    animation: cardFloat 4s ease-in-out infinite;
}

.google-review-card:nth-child(1) {
    animation-delay: 0s;
}

.google-review-card:nth-child(2) {
    animation-delay: 1s;
}

.google-review-card:nth-child(3) {
    animation-delay: 2s;
}

/* Special Effects on Hover */
.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-size: 200% 100%;
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::after {
    opacity: 1;
    animation: gradientFlow 2s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Rating Badge Animation */
.review-stars i {
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover .review-stars i {
    animation: starTwinkle 1s ease-in-out;
}

.review-card:hover .review-stars i:nth-child(1) { animation-delay: 0.1s; }
.review-card:hover .review-stars i:nth-child(2) { animation-delay: 0.3s; }
.review-card:hover .review-stars i:nth-child(3) { animation-delay: 0.6s; }
.review-card:hover .review-stars i:nth-child(4) { animation-delay: 0.9s; }
.review-card:hover .review-stars i:nth-child(5) { animation-delay: 1.0s; }

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.3);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    }
}


