/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-color: #1976d2;
    --accent-color: #ff9800;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --bg-light: #f5f7fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar.scrolled .logo-text {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--primary-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    background: var(--text-dark);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(25, 118, 210, 0.8)),
                url('images/gulmoher_clean_with_junaid.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 20px;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-color);
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.core-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
}

/* ===================================
   Projects Section
   =================================== */
.projects {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card.featured {
    grid-column: span 2;
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.project-features {
    margin-bottom: 25px;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
}

.project-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===================================
   Forest View Section
   =================================== */
.forest-view {
    background: linear-gradient(135deg, var(--bg-light), var(--off-white));
}

.forest-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.forest-view-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.forest-view-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.forest-view-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.amenity:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.amenity i {
    font-size: 32px;
    color: var(--primary-color);
}

.amenity span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.forest-view-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.forest-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.forest-view-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.review-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--accent-color);
    font-size: 18px;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   Videos Section
   =================================== */
.videos {
    background: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn i {
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 4px;
}

.play-btn:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn:hover i {
    color: var(--white);
}

.video-card h4 {
    padding: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
}

.video-link {
    display: block;
    padding: 12px 20px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.video-link:hover {
    color: var(--primary-dark);
    background: var(--bg-light);
}

.video-link i {
    margin-left: 8px;
    color: #FF0000;
}

.featured-video {
    grid-column: span 1;
}

.featured-video .video-thumbnail {
    height: 220px;
}

.view-more {
    text-align: center;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Developer Cover Letter */
.developer-cover-letter {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(25, 118, 210, 0.05));
    padding: 25px;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.developer-cover-letter h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.developer-cover-letter p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.cover-letter-signature {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

.cover-letter-signature strong {
    color: var(--text-dark);
}

.cover-letter-signature span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-top: 3px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item p a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.secondary-address {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-projects h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul,
.footer-projects ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-projects a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-projects a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-contact p a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--primary-light);
}

.footer-contact p i {
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Investors Section
   =================================== */
.investors {
    background: linear-gradient(135deg, var(--bg-light), var(--off-white));
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.investor-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.investor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.investor-card.featured-investor {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.investor-card.featured-investor .investor-icon {
    background: rgba(255, 255, 255, 0.2);
}

.investor-card.featured-investor h3,
.investor-card.featured-investor p {
    color: var(--white);
}

.investor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.investor-card:hover .investor-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.investor-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.investor-card.featured-investor .investor-icon i {
    color: var(--white);
}

.investor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.investor-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.investor-cta {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.investor-cta-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.investor-cta-text strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.investor-contact-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-title {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 5px;
    display: block;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.investor-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.investor-buttons .btn i {
    margin-right: 8px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card.featured {
        grid-column: span 1;
    }

    .investors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .investor-card.featured-investor {
        grid-column: span 2;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 18px;
    }
    
    .about-content,
    .forest-view-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image,
    .forest-view-image {
        order: -1;
    }
    
    .core-values,
    .projects-grid,
    .investors-grid,
    .reviews-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .investor-card.featured-investor {
        grid-column: span 1;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

/* Form Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===================================
   Developer Portfolio Section
   =================================== */
.developer-portfolio {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
}

.developer-portfolio .section-title {
    color: var(--white);
}

.developer-portfolio .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-category-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-category-title i {
    color: var(--accent-color);
}

/* Featured Projects */
.portfolio-featured {
    margin-bottom: 60px;
}

.portfolio-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-featured-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.portfolio-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.portfolio-featured-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.portfolio-featured-card:hover::before {
    transform: scaleX(1);
}

.portfolio-featured-card .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.portfolio-featured-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio-featured-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.portfolio-featured-card .visit-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-featured-card:hover .visit-link {
    color: var(--primary-light);
}

/* All Projects Grid */
.portfolio-all-projects {
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.portfolio-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.portfolio-item .project-num {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 30px;
}

.portfolio-item .project-name {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-item i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    transition: var(--transition);
}

.portfolio-item:hover i {
    color: var(--primary-light);
    transform: translateX(3px);
}

/* Social Portfolio Grid */
.portfolio-social {
    margin-bottom: 60px;
}

.social-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.social-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-portfolio-card i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-portfolio-card.facebook {
    border-color: rgba(24, 119, 242, 0.3);
}

.social-portfolio-card.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877f2;
}

.social-portfolio-card.facebook i {
    background: #1877f2;
    color: var(--white);
}

.social-portfolio-card.youtube {
    border-color: rgba(255, 0, 0, 0.3);
}

.social-portfolio-card.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: #ff0000;
}

.social-portfolio-card.youtube i {
    background: #ff0000;
    color: var(--white);
}

.social-portfolio-card.tiktok {
    border-color: rgba(37, 244, 238, 0.3);
}

.social-portfolio-card.tiktok:hover {
    background: rgba(37, 244, 238, 0.15);
    border-color: #25f4ee;
}

.social-portfolio-card.tiktok i {
    background: linear-gradient(135deg, #25f4ee, #fe2c55);
    color: var(--white);
}

.social-portfolio-card.fiverr {
    border-color: rgba(29, 191, 115, 0.3);
}

.social-portfolio-card.fiverr:hover {
    background: rgba(29, 191, 115, 0.15);
    border-color: #1dbf73;
}

.social-portfolio-card.fiverr i {
    background: #1dbf73;
    color: var(--white);
}

.social-portfolio-card h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 3px;
}

.social-portfolio-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Portfolio CTA */
.portfolio-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
}

.portfolio-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.7;
}

.portfolio-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.portfolio-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    font-size: 14px;
}

.portfolio-cta .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
    padding: 12px 24px;
    font-size: 14px;
}

.portfolio-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.portfolio-cta .btn i {
    margin-right: 8px;
}

/* Portfolio Responsive */
@media (max-width: 1200px) {
    .portfolio-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-featured-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-cta {
        padding: 30px 20px;
    }

    .portfolio-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        padding: 15px;
    }
}

/* ===================================
   Floating WhatsApp Button
   =================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.float-wa-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.float-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.float-wa-numbers {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    min-width: 180px;
}

.floating-whatsapp:hover .float-wa-numbers {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-wa-numbers a {
    display: block;
    padding: 8px 12px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.float-wa-numbers a:hover {
    background: #25D366;
    color: var(--white);
}

/* ===================================
   Shop / E-Commerce Section
   =================================== */
.shop {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.hot {
    background: #dc3545;
}

.product-badge.premium {
    background: #6f42c1;
}

.product-badge.luxury {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.product-badge.new {
    background: #17a2b8;
}

.product-badge.investment {
    background: #28a745;
}

.product-badge.platinum {
    background: linear-gradient(135deg, #8e9eab, #eef2f3);
    color: #333;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.quick-view-btn {
    width: 100%;
    padding: 10px;
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-content {
    padding: 25px;
}

.product-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.roi-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-features-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.product-features-mini span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-features-mini i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.add-to-cart-btn.added {
    background: #28a745;
}

.whatsapp-inquiry-btn {
    width: 45px;
    height: 45px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.whatsapp-inquiry-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Cart Icon in Navbar */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
}

.cart-icon i {
    font-size: 22px;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .cart-icon i {
    color: var(--text-dark);
}

.cart-icon:hover i {
    color: var(--primary-light);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    background: #dc3545;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--primary-color);
}

.close-cart {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    background: #dc3545;
    color: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quantity-value {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 30px;
    text-align: center;
}

.remove-item {
    color: #dc3545;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.cart-empty i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-summary {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total span:first-child {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.cart-total span:last-child {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.checkout-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.quick-view-modal.active .quick-view-content {
    transform: scale(1);
}

.close-quick-view {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.close-quick-view:hover {
    background: #dc3545;
    color: var(--white);
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.quick-view-image {
    height: 400px;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-details {
    padding: 40px;
}

.quick-view-details h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quick-view-details .product-pricing {
    margin-bottom: 20px;
}

.quick-view-details .current-price {
    font-size: 1.8rem;
}

.quick-view-features {
    margin-bottom: 25px;
}

.quick-view-features h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quick-view-features ul {
    list-style: none;
}

.quick-view-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-view-features li i {
    color: var(--primary-color);
}

/* Shop CTA */
.shop-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
}

.shop-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.shop-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.shop-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.shop-cta .btn-primary:hover {
    background: var(--off-white);
}

.shop-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.shop-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-dark);
    color: var(--white);
    padding: 16px 30px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast.success {
    background: #28a745;
}

.toast.error {
    background: #dc3545;
}

.toast i {
    font-size: 18px;
}

/* Shop Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-modal {
        width: 100%;
        right: -100%;
    }

    .quick-view-body {
        grid-template-columns: 1fr;
    }

    .quick-view-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-categories {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .shop-cta {
        padding: 30px 20px;
    }

    .quick-view-details {
        padding: 25px;
    }
}
