/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Specific image containers for better mobile display */
.hero-image img.laptop,
.hero-image img.tablet,
.why-image img.laptop,
.download-image img.laptop,
.device-mockup img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Logo images */
.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 90px; /* Offset for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    max-width: 100%;
    width: auto;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    min-height: 44px; /* Touch target size */
}

/* Page Titles */
.page-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2C3E50;
    margin-bottom: 20px;
}

.page-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: 60px;
}

.btn-orange {
    background-color: #FF6B35; /* Accent Orange */
    color: white;
    display: inline-block;
    text-align: center;
}

.btn-orange:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #FF6B35; /* Accent Orange */
    border: 2px solid #FF6B35;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background-color: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
    max-width: 100%;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: clamp(15px, 3vw, 30px);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    padding: 8px 12px; /* Touch target padding */
}

.nav-menu a.active {
    color: #FF6B35; /* Accent Orange */
}

.nav-menu a:hover {
    color: #FF6B35;
}

.nav-button {
    margin-right: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 5vw, 50px);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #2C3E50; /* Primary Blue */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img.laptop {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-right: clamp(-20px, -5vw, -50px);
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    letter-spacing: 1px;
}

.word1 {
    display: inline-block;
    opacity: 0;
    animation: showWord1 1.5s forwards;
}

.word2 {
    display: inline-block;
    opacity: 0;
    animation: showWord2 1.5s 0.5s forwards;
}

.word3 {
    display: inline-block;
    opacity: 0;
    animation: showWord3 1.5s 1s forwards;
}

@keyframes showWord1 {
    0% { opacity: 0; transform: translateX(-20px); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes showWord2 {
    0% { opacity: 0; transform: translateX(-20px); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes showWord3 {
    0% { opacity: 0; transform: translateX(-20px); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-image img.tablet {
    width: 100%;
    height: auto;
    max-width: 250px;
    max-height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: -40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.why-image img.laptop {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.device-mockup {
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
    position: relative;
}

.laptop {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 200px;
    margin-right: -50px;
}

.tablet {
    width: 100%;
    height: auto;
    max-width: 200px;
    max-height: 280px;
    margin-top: -40px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #2C3E50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: #2C3E50;
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: #FF6B35;
    bottom: 20%;
    right: 10%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

/* Features Page */
.features-page {
    padding: 120px 0 80px;
    background-color: white;
}

.features-page .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.feature-card-large {
    background: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.feature-card-large:hover {
    transform: translateY(-10px);
}

.feature-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #FF6B35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.feature-card-large h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2C3E50;
    margin: 0 0 15px 0;
    padding-top: 10px;
}

.feature-card-large p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.feature-card {
    background: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2C3E50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Download Section */
.download {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Features Page Specific */
.features-page {
    padding: 120px 0 80px;
    background-color: white;
}

.features-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.download-content {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 50px);
}

.download-image img.laptop {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.download-text {
    flex: 1;
}

.download-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #2C3E50;
    margin-bottom: 20px;
}

.download-text p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 3vw, 20px);
    margin-top: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    background: white;
    padding: clamp(10px, 2vw, 15px);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 250px;
    margin-bottom: 10px;
}

.download-btn:hover {
    transform: translateY(-5px);
}

.download-btn .btn-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-right: 15px;
}

.download-btn .btn-icon img {
    width: clamp(20px, 4vw, 32px);
    height: clamp(20px, 4vw, 32px);
    vertical-align: bottom;
}

.download-btn .btn-text {
    text-align: left;
}

.download-btn .btn-text span {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: #666;
    display: block;
}

.download-btn .btn-text h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #333;
    margin: 5px 0 0;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2C3E50;
    margin-bottom: 60px;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5vw, 50px);
    margin-bottom: 60px;
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #2C3E50;
    margin-bottom: 20px;
}

.why-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tablet-mockup {
    width: 100%;
    height: auto;
    max-width: 250px;
    max-height: 350px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
}

.reverse {
    flex-direction: row-reverse;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: white;
}

.pricing-cards {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.standard {
    transform: scale(1.05);
    border: 2px solid #FF6B35;
    z-index: 1;
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
}

.pricing-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2C3E50;
    margin-bottom: 15px;
}

.price {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.price span {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    text-align: left;
    padding-left: 25px;
    position: relative;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.features-list li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
}

/* CTA Banner */
.cta-banner {
    background-color: #2C3E50; /* Primary Blue */
    padding: 60px 0;
    text-align: center;
    color: white;
}

/* Contact Section */
.contact {
    padding: 120px 0 80px;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: clamp(20px, 5vw, 50px);
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-right: 15px;
    color: #FF6B35;
}

.contact-text h3 {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #2C3E50;
    margin: 0 0 5px 0;
}

.contact-text p {
    margin: 0;
    color: #666;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.social-links h3 {
    margin-bottom: 15px;
    color: #2C3E50;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px; /* Touch target size */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px; /* Better touch target for textarea */
}

.contact-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.contact-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.contact-features li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #2C3E50; /* Primary Blue */
    color: white;
    padding: 60px 0 30px;
}

/* Pricing Page Specific Styles */
.pricing {
    padding: 80px 0;
    background-color: white;
}

.product-card {
    background: white;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card.standard {
    transform: scale(1.05);
    border: 2px solid #FF6B35;
    z-index: 1;
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF6B35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
}

.product-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2C3E50;
    margin-bottom: 15px;
}

.price {
    position: relative;
    margin-bottom: 20px;
}

.current-price {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2C3E50;
    display: block;
}

.original-price {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-top: 5px;
}

.gst-info {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    text-align: left;
    padding-left: 25px;
    position: relative;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.features-list li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
}

/* Rental Services Section */
.rental-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.rental-cards {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    justify-content: center;
    flex-wrap: wrap;
}

.rental-card {
    background: white;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.rental-card:hover {
    transform: translateY(-10px);
}

.rental-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2C3E50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
}

.rental-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2C3E50;
    margin-bottom: 15px;
}

.rental-price {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.rental-tax {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.security-deposit {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: #FF6B35;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pricing Summary */
.pricing-summary {
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    text-align: center;
}

.summary-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.summary-icon {
    font-size: 1.2rem;
    color: #4CAF50;
    font-weight: bold;
}

.summary-text {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #333;
}

/* Terms & Conditions Page */
.terms-conditions {
    padding: 120px 0 80px;
    background-color: white;
}

/* Shop Page Styles */
.product-detail {
    padding: 80px 0;
    background-color: white;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-item.active {
    border-color: #FF6B35;
}

.gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2C3E50;
    margin-bottom: 10px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 1.2rem;
    color: #FFD700;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.availability {
    display: flex;
    align-items: center;
}

.in-stock {
    background-color: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.popular {
    display: flex;
    align-items: center;
}

.best-seller {
    background-color: #FF6B35;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.current-price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2C3E50;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #FF6B35;
    color: white;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.gst-info {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin: 5px 0;
}

.savings {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 600;
}

.whats-included h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.included-list {
    list-style: none;
    margin-bottom: 20px;
}

.included-list li {
    padding: 8px 0;
    color: #666;
    text-align: left;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.included-list li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quantity-selector label {
    font-weight: 500;
    color: #333;
}

.quantity-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 80px;
}

.buy-now-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.assurance-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.assurance-icon {
    color: #4CAF50;
    font-weight: bold;
}

.assurance-text {
    color: #666;
}

.related-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.related-products .section-title {
    margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
    
    .assurance-strip {
        flex-direction: column;
        gap: 10px;
    }
    
    .buy-now-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 1000;
        margin: 0;
    }
    
    .product-detail {
        padding-bottom: 120px; /* Space for fixed button */
    }
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.term-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.term-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.term-divider {
    height: 2px;
    background-color: #FF6B35;
    width: 60px;
    margin: 10px auto 20px;
}

.term-section h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #2C3E50;
    margin-bottom: 15px;
}

.term-section p {
    color: #666;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 10px;
}

.term-section p:last-child {
    margin-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column .logo {
    margin-bottom: 15px;
}

.footer-column .logo img {
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
    width: 150px;
    max-height: 60px;
}

.footer-column h3 {
    color: #FF6B35;
    margin-bottom: 15px;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: #FF6B35;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .copyright {
    margin: 0;
    color: #BDC3C7;
}

.footer-bottom a {
    color: #BDC3C7;
    text-decoration: none;
    margin: 0 clamp(5px, 1vw, 10px);
    display: inline-block;
}

.footer-bottom a:hover {
    color: #FF6B35;
}

.footer-column p {
    margin-bottom: 20px;
    max-width: 100%;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.social-icons {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #34495E;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #FF6B35;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.contact-info p,
.contact-info a {
    color: white;
}

.copyright {
    margin-top: 20px;
    color: #BDC3C7;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .pricing-card {
        max-width: 300px;
    }
    
    .pricing-card.standard {
        transform: scale(1.02);
    }
}

@media (max-width: 1024px) {
    .feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .pricing-card.standard {
        transform: scale(1);
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-text {
        order: -1; /* Content first on mobile/tablet */
        margin-bottom: 30px;
    }
    
    .download-image {
        order: 0; /* Image after content on mobile/tablet */
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        order: -1; /* Content first on mobile */
    }
    
    .hero-image {
        order: 0; /* Image after content on mobile */
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .why-choose-content {
        flex-direction: column;
        text-align: center;
    }
    
    .why-content {
        order: -1; /* Content first on mobile */
        margin-bottom: 30px;
    }
    
    .why-image {
        order: 0; /* Image after content on mobile */
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .reverse .why-content {
        order: -1; /* Content first on mobile */
    }
    
    .reverse .why-image {
        order: 0; /* Image after content on mobile */
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-text {
        order: -1; /* Content first on mobile */
        margin-bottom: 30px;
    }
    
    .download-image {
        order: 0; /* Image after content on mobile */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .cta-banner h2 {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info, .contact-form {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        gap: 15px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .cta-banner h2 {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        order: -1; /* Content first on mobile */
    }
    
    .hero-image {
        order: 0; /* Image after content on mobile */
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .why-choose-content {
        flex-direction: column;
        text-align: center;
    }
    
    .why-content {
        order: -1; /* Content first on mobile */
        margin-bottom: 30px;
    }
    
    .why-image {
        order: 0; /* Image after content on mobile */
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .download-text {
        order: -1; /* Content first on mobile */
        margin-bottom: 30px;
    }
    
    .download-image {
        order: 0; /* Image after content on mobile */
    }
    
    .hero-content h1 {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }
    
    .btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 15px 12px;
    }
    
    .feature-card, .feature-card-large {
        padding: 15px;
    }
}