
/* style.css */

/* CSS Variables */
:root {
    --gold-primary: #D4A574;
    --gold-secondary: #B8860B;
    --gold-light: #F4E4BC;
    --gold-dark: #8B6914;
    --black-primary: #0A0A0A;
    --black-secondary: #1A1A1A;
    --black-light: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    --shadow-light: 0 4px 20px rgba(212, 165, 116, 0.15);
    --shadow-medium: 0 8px 30px rgba(212, 165, 116, 0.25);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.3);
    --gradient-gold: linear-gradient(135deg, #D4A574 0%, #B8860B 100%);
    --gradient-black: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--black-primary);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--gradient-black);
    z-index: 1000;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.nav-brand {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    padding-bottom: 2rem;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.nav-brand h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nav-brand p {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.nav-menu {
    flex: 1;
    list-style: none;
    padding: 0 1rem;
}

.nav-menu li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #CCCCCC;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link i {
    width: 20px;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(212, 165, 116, 0.15);
    color: var(--gold-primary);
    transform: translateX(5px);
}

.nav-footer {
    padding: 0 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    gap: 4px;
}

.mobile-nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(212, 165, 116, 0.3) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 30%; right: 30%; animation-delay: 4s; }
.particle:nth-child(4) { bottom: 40%; left: 60%; animation-delay: 6s; }
.particle:nth-child(5) { bottom: 20%; right: 20%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    50% { transform: translateY(-10px) translateX(-10px); opacity: 0.8; }
    75% { transform: translateY(-30px) translateX(5px); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn-primary-gold {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--gold-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--black-primary);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: var(--gray-light);
}

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
}

.experience-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 3rem;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.about-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.feature-content h5 {
    margin-bottom: 0.5rem;
    color: var(--black-primary);
}

.feature-content p {
    color: var(--gray-medium);
    margin: 0;
}

.certifications h6 {
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.cert-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gray-medium);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--gray-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-gold);
    border-color: var(--gold-primary);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.property-info {
    margin-top: auto;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.property-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.property-location {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

/* Services Section */
.services-section {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.service-card.featured {
    background: var(--gradient-black);
    color: var(--white);
}

.service-card.featured .service-icon {
    background: var(--gradient-gold);
}

.service-card.featured h4 {
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold-dark);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--gray-dark);
    display: flex;
    align-items: center;
}

.service-features li:before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card.featured .service-features li {
    color: #CCCCCC;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Market Section */
.market-section {
    background: var(--white);
}

.market-stats {
    margin-bottom: 4rem;
}

.market-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.market-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.market-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.market-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.market-label {
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.market-insights {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 20px;
}

.insight-content h3 {
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.insight-content p {
    margin-bottom: 2rem;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
}

.achievement-item i {
    color: var(--gold-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.chart-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-black);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-slide.active {
    display: block;
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--gold-primary);
    margin: 0 2px;
}

.testimonial-slide blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ECECEC;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
}

.client-details h5 {
    margin-bottom: 0.25rem;
    color: var(--white);
}

.client-details span {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.nav-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--gold-primary);
}

/* Contact Section */
.contact-section {
    background: var(--gray-light);
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-content h5 {
    margin-bottom: 0.5rem;
    color: var(--black-primary);
}

.contact-content p {
    color: var(--gray-medium);
    margin: 0;
}

.availability {
    margin-top: 2rem;
}

.availability h5 {
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.availability-hours {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--black-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Property Modal */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-black);
    color: var(--white);
    border-bottom: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 0;
}

.property-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.property-modal-info {
    padding: 2rem;
}

.property-modal-info h3 {
    margin-bottom: 0.5rem;
    color: var(--black-primary);
}

.property-modal-price {
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.property-modal-location {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.property-modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
}

.feature i {
    color: var(--gold-primary);
}

.property-description {
    color: var(--gray-dark);
    line-height: 1.6;
}

.modal-footer {
    border-top: 1px solid #E9ECEF;
    padding: 1.5rem 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        margin-left: 0;
    }
    
    .side-nav {
        transform: translateX(-100%);
    }
    
    .side-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .testimonial-navigation {
        gap: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-item {
        margin: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
