/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary: #34a853;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: var(--dark);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Buttons */
.btn-primary, .btn-secondary, .buy-btn, .whatsapp-btn, .order-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.buy-btn {
    background: var(--secondary);
    color: white;
    width: 100%;
    margin-top: 15px;
}

.buy-btn:hover {
    background: #2d8c47;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Header & Navigation */
header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo .zm {
    color: var(--primary);
}

.tagline {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.order-btn {
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.order-btn-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 150px;
    width: 50%;
    height: 400px;
}

.watch-display {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark), var(--primary));
    border-radius: 20px;
    transform: rotate(10deg);
    box-shadow: var(--shadow);
}

/* Watches Section */
.watches-section {
    padding: 80px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.category-btn.active, .category-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.watches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.watch-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.watch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.watch-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stock-badge.coming-soon {
    background: #ff9800;
}

.watch-image-placeholder {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.watch-info {
    padding: 1.5rem;
}

.watch-desc {
    font-size: 0.9rem;
    color: var(--gray);
    min-height: 40px;
}

.watch-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0;
}

.notify-btn {
    background: #ff9800;
}

.notify-btn:hover {
    background: #f57c00;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.founder-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 300px;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    margin: 0 auto 1.5rem;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.founder-card h3 {
    margin-bottom: 0.5rem;
}

.founder-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: var(--light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.whatsapp-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 2rem;
}

.whatsapp-box i {
    font-size: 4rem;
    color: #25D366;
}

.whatsapp-box h3 {
    margin-bottom: 0.5rem;
}

.whatsapp-box > div {
    flex: 1;
    min-width: 300px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.2rem;
}

.contact-item p {
    margin-bottom: 0.2rem;
}

.contact-item small {
    color: var(--gray);
    font-size: 0.8rem;
}

.social-media {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand .zm {
    color: var(--primary);
}

.founder-credit {
    color: #aaa;
    font-style: italic;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.float-whatsapp i {
    font-size: 1.8rem;
}

.float-whatsapp span {
    position: absolute;
    right: 70px;
    background: #25D366;
    padding: 8px 15px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.float-whatsapp:hover {
    width: auto;
    padding: 0 25px;
    border-radius: 50px;
}

.float-whatsapp:hover span {
    opacity: 1;
    right: 25px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.close-modal:hover {
    color: var(--dark);
}

/* Watch Specs */
.watch-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.watch-specs span {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.watch-specs span i {
    color: var(--primary);
}

/* Mission Vision Section */
.mission-vision {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.mission, .vision {
    flex: 1;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.mission h3, .vision h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.mission h3 i, .vision h3 i {
    color: var(--primary);
}

/* Timeline Section */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.timeline-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h4 {
    margin-bottom: 0;
    color: var(--dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Campus Cards */
.campuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.campus-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.campus-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.campus-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.campus-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.contact-option {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-option label:hover {
    border-color: var(--primary);
}

.contact-option input[type="radio"] {
    accent-color: var(--primary);
}

.contact-option input[type="radio"]:checked + i {
    color: var(--primary);
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
}

.small-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.small-link:hover {
    text-decoration: underline;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Founder Bio */
.founder-bio {
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.founder-bio p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Logo container for better mobile handling */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Remove outline on focus for touch devices */
@media (hover: none) {
    *:focus {
        outline: none;
    }
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .buy-btn,
    .whatsapp-btn,
    .order-btn,
    .category-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    a, button {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .watches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Timeline responsive */
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 25px;
    }
    
    /* Mission Vision responsive */
    .mission-vision {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission, .vision {
        width: 100%;
    }
    
    /* Testimonials responsive */
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Campuses responsive */
    .campuses {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
        text-align: center;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .order-btn {
        display: none;
    }
    
    .order-btn-mobile {
        display: block;
        text-align: center;
        margin-top: 1rem;
        padding: 12px 20px;
        background: var(--secondary);
        color: white;
        border-radius: 50px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Logo */
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-container > img.watch-image {
        width: 60px !important;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Sections */
    .watches-section,
    .order-section,
    .about-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Watch Grid */
    .watches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .watch-card {
        border-radius: 10px;
    }
    
    .watch-img {
        height: 160px;
    }
    
    .watch-info {
        padding: 1rem;
    }
    
    .watch-info h3 {
        font-size: 1.1rem;
    }
    
    .watch-desc {
        font-size: 0.8rem;
        min-height: 35px;
    }
    
    .watch-price {
        font-size: 1.4rem;
    }
    
    .watch-specs {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .watch-specs span {
        font-size: 0.75rem;
    }
    
    .buy-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    /* Categories */
    .categories {
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Steps */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step i {
        font-size: 2rem;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    /* Features */
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature i {
        font-size: 1.5rem;
    }
    
    .feature h4 {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .founder-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .founder-card img {
        width: 120px !important;
    }
    
    .founder-bio p {
        font-size: 0.9rem;
    }
    
    /* Timeline */
    .timeline {
        margin-top: 2rem;
    }
    
    .timeline-item {
        margin-bottom: 1.5rem;
    }
    
    .timeline-date {
        font-size: 0.85rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .contact-option {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-option label {
        width: 100%;
        text-align: center;
    }
    
    /* FAQ */
    .faq-container {
        padding: 0;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 30px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Campuses */
    .campuses {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .campus-card {
        padding: 1.25rem;
    }
    
    .campus-card h4 {
        font-size: 0.95rem;
    }
    
    .campus-card p {
        font-size: 0.8rem;
    }
    
    /* WhatsApp Box */
    .whatsapp-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .whatsapp-box > div {
        min-width: auto;
    }
    
    .whatsapp-box i {
        font-size: 3rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand h2 {
        font-size: 1.6rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    /* Float WhatsApp */
    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .float-whatsapp i {
        font-size: 1.6rem;
    }
    
    .float-whatsapp span {
        display: none;
    }
    
    .float-whatsapp:hover {
        width: 55px;
        padding: 0;
    }
    
    /* Modal */
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    /* Typography */
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 12px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav-container > img.watch-image {
        width: 50px !important;
    }
    
    /* Hero */
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .watches-section,
    .order-section,
    .about-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Watch Grid - Single column */
    .watches-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .watch-card {
        max-width: 100%;
    }
    
    .watch-img {
        height: 200px;
    }
    
    .watch-info {
        padding: 1.25rem;
    }
    
    .watch-info h3 {
        font-size: 1.2rem;
    }
    
    .watch-desc {
        font-size: 0.85rem;
        min-height: auto;
    }
    
    .watch-price {
        font-size: 1.5rem;
    }
    
    .watch-specs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .watch-specs span {
        font-size: 0.8rem;
    }
    
    /* Categories */
    .categories {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 100px;
    }
    
    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    /* Features */
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* About */
    .about-content {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .founder-card img {
        width: 100px !important;
    }
    
    .founder-card h3 {
        font-size: 1.2rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-date {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-note {
        font-size: 0.8rem;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Campuses */
    .campuses {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .campus-card {
        padding: 1rem;
    }
    
    .campus-card i {
        font-size: 1.5rem;
    }
    
    .campus-card h4 {
        font-size: 0.9rem;
    }
    
    /* WhatsApp Box */
    .whatsapp-box {
        padding: 1.25rem;
    }
    
    .whatsapp-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand h2 {
        font-size: 1.4rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-whatsapp {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Float WhatsApp */
    .float-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .float-whatsapp i {
        font-size: 1.4rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
    
    #notifyForm input,
    #notifyForm button {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Text center utility */
    .text-center {
        text-align: center;
    }
    
    .text-center .btn-primary,
    .text-center .btn-secondary {
        margin: 0.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .logo h1 {
        font-size: 1rem;
    }
    
    .nav-container > img.watch-image {
        width: 40px !important;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .watch-info h3 {
        font-size: 1.1rem;
    }
    
    .watch-price {
        font-size: 1.3rem;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .buy-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
