/* Modern Freelance Portfolio - Sage Green + Tan Palette */

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--sage);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* CSS Variables */
:root {
    /* Color Palette - New Green-Based Scheme */
    --sage: #A3B18A;           /* Primary brand color */
    --reseda-green: #5C7650;   /* Darker accent for hover states */
    --hunter-green: #3A5A40;   /* Bold contrast areas */
    --brunswick-green: #344E41; /* High contrast elements */
    --timberwolf: #DAD7CD;     /* Light backgrounds */
    --deep-text: #2B2B2B;      /* Text color */
    --white: #FFFFFF;          /* Clean contrast */
    --light-gray: #F5F5F5;     /* Subtle backgrounds */
    
    /* Typography */
    --font-heading: 'Gotham', sans-serif;
    --font-body: 'Source Serif Pro', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(163, 177, 138, 0.1);
    --shadow-md: 0 4px 16px rgba(163, 177, 138, 0.15);
    --shadow-lg: 0 8px 32px rgba(163, 177, 138, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--deep-text);
    background-color: var(--timberwolf);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
}

/* Body Text */
p, span, input, textarea, button {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: inherit;
}

/* Links */
a {
    font-family: var(--font-body);
    text-decoration: none;
    color: inherit;
}

/* Form Headings */
label, legend {
    font-family: var(--font-heading);
    font-weight: 500;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--deep-text);
    opacity: 0.8;
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 167, 159, 0.1);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--deep-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-badge {
    display: flex;
    align-items: center;
}

.badge {
    background: var(--reseda-green);
    color: var(--deep-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta-btn {
    background: var(--sage);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--sage);
}

.nav-cta-btn:hover {
    background: var(--reseda-green);
    border-color: var(--reseda-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-cta-mobile {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--sage);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(163, 177, 138, 0.7) 0%, rgba(92, 118, 80, 0.6) 100%), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-accent {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, var(--sage), var(--reseda-green));
    opacity: 0.1;
    border-radius: 50%;
    transform: rotate(15deg);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    padding-bottom: 0.2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.cta {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.cta-primary {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.cta-primary:hover {
    background: var(--reseda-green);
    color: var(--white);
    border-color: var(--reseda-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    background: transparent;
    color: var(--sage);
    border-color: var(--sage);
}

.cta-secondary:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--sage);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sage);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--timberwolf);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(163, 177, 138, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--reseda-green));
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage), var(--reseda-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--sage);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--deep-text);
    opacity: 0.7;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.service-cta {
    background: var(--sage);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.service-cta:hover {
    background: var(--reseda-green);
    color: var(--white);
    transform: translateY(-2px);
}


/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--sage);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--white);
}

.skills-section {
    margin: 2rem 0;
}

.skills-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.skills-list {
    list-style: none;
}

.skills-list li {
    padding: 0.5rem 0;
    color: var(--white);
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.skills-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.about-cta {
    background: var(--white);
    color: var(--sage);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
}

.about-cta:hover {
    background: var(--reseda-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.photo-slot {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.photo-slot:first-child {
    grid-column: 1 / -1;
}

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

.photo-slot img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    image-rendering: auto;
    transition: var(--transition);
    aspect-ratio: 1;
}

.photo-slot:first-child img {
    height: 300px;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    image-rendering: auto;
}

.photo-slot:hover img {
    transform: scale(1.05);
}

/* Special hover effect for smaller photos to show full image */
.photo-slot:not(:first-child):hover img {
    object-fit: contain;
    transform: scale(1.1);
    filter: brightness(1.1);
}

.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(163, 177, 138, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(138, 167, 159, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    background: var(--white);
    color: var(--sage);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--reseda-green);
    color: var(--deep-text);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: var(--sage);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.portfolio-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.portfolio-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-badges .badge {
    background: var(--timberwolf);
    color: var(--sage);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Coming Soon Placeholder */
.coming-soon-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--sage), var(--reseda-green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.coming-soon-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.coming-soon-text {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Why Pick Me Section */
.why-pick-me {
    padding: var(--section-padding);
    background: var(--timberwolf);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 120px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--reseda-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-text);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--deep-text);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item p {
    color: var(--deep-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.reviews-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.reviews-section h3 {
    color: var(--deep-text);
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.review-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.review-item p {
    color: var(--deep-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.review-item cite {
    color: var(--reseda-green);
    font-size: 0.85rem;
    font-weight: 500;
    font-style: normal;
}

.why-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--sage);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--deep-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--sage);
    font-weight: 600;
    font-style: normal;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--deep-text);
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(163, 177, 138, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage);
}

.pricing-card.featured {
    border-color: var(--sage);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: var(--sage);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--sage);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sage);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--deep-text);
    opacity: 0.7;
    display: block;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--deep-text);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.pricing-cta {
    background: var(--sage);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
    text-align: center;
}

.pricing-cta:hover {
    background: var(--reseda-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-note {
    text-align: center;
    background: var(--timberwolf);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--sage);
}

.pricing-note p {
    margin: 0;
    color: var(--deep-text);
    font-size: 1.1rem;
}

/* Pricing Options */
.pricing-options {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--timberwolf);
    border-radius: var(--border-radius);
    border: 1px solid rgba(163, 177, 138, 0.2);
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(163, 177, 138, 0.1);
}

.pricing-option:last-child {
    border-bottom: none;
}

.option-label {
    font-size: 0.9rem;
    color: var(--deep-text);
    font-weight: 500;
}

.option-price {
    font-size: 0.9rem;
    color: var(--sage);
    font-weight: 600;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--sage);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--deep-text);
    opacity: 0.8;
}

.contact-item i {
    color: var(--sage);
    width: 20px;
}

.contact-form {
    background: var(--timberwolf);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(138, 167, 159, 0.2);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(138, 167, 159, 0.1);
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-success {
    background: var(--timberwolf);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 2rem;
    border: 2px solid var(--sage);
}

.contact-success h3 {
    color: var(--sage);
    margin-bottom: 1rem;
}

.contact-success a {
    color: var(--sage);
    text-decoration: none;
}

.contact-success a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--sage);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--reseda-green);
    color: var(--deep-text);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .why-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-photos {
        grid-template-columns: 1fr;
    }
    
    .photo-slot:first-child {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 2rem 0;
        --container-padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-badge {
        display: none;
    }
    
    .nav-cta-mobile {
        display: block;
        background: var(--sage);
        color: var(--white) !important;
        padding: 0.8rem 1.2rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        text-align: center;
        margin-top: 0.8rem;
        border: 2px solid var(--sage);
        transition: var(--transition);
        font-size: 0.9rem;
    }
    
    .nav-cta-mobile:hover {
        background: var(--reseda-green);
        border-color: var(--reseda-green);
        color: var(--white) !important;
        transform: translateY(-2px);
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 50vh;
        padding: 7rem 0 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-photos {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .photo-slot img {
        height: 120px;
    }
    
    .photo-slot:first-child img {
        height: 120px;
    }
    
    .services-container {
        position: relative;
        overflow: hidden;
        padding: 0 50px;
    }
    
    .services-grid {
        display: flex;
        transition: transform 0.3s ease;
        gap: 1rem;
    }
    
    .service-card {
        flex: 0 0 100%;
        padding: 1.2rem;
        margin: 0;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--sage);
        opacity: 0.3;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    
    .carousel-dot.active {
        opacity: 1;
    }
    
    .carousel-arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--sage);
        color: var(--white);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: var(--transition);
        opacity: 0.8;
    }
    
    .carousel-arrows:hover {
        opacity: 1;
        background: var(--reseda-green);
    }
    
    .carousel-arrow-left {
        left: 10px;
    }
    
    .carousel-arrow-right {
        right: 10px;
    }
    
    .carousel-arrows i {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-section {
        margin-top: 1.5rem;
    }
    
    .pricing-container {
        position: relative;
        overflow: hidden;
        padding: 0 50px;
    }
    
    .pricing-grid {
        display: flex;
        transition: transform 0.3s ease;
        gap: 1rem;
    }
    
    .pricing-item-wrapper {
        flex: 0 0 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        flex: 0 0 100%;
        padding: 1.2rem;
        margin: 0;
    }
    
    .pricing-badge {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 18px;
        display: inline-block;
    }
    
    .pricing-card.featured {
        margin-top: 0;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .form-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 1rem;
        --section-padding: 1.5rem 0;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 45vh;
        padding: 6rem 0 1rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .service-card,
    .contact-form,
    .pricing-card {
        padding: 1.2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }
    
    .nav-cta-mobile {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        margin-top: 0.6rem;
    }
    
    .pricing-badge {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 18px;
        display: inline-block;
    }
    
    .pricing-card.featured {
        margin-top: 0;
    }
    
    .about-photos {
        gap: 0.5rem;
    }
    
    .photo-slot img {
        height: 100px;
        object-fit: cover;
        object-position: center;
    }
    
    .photo-slot:first-child img {
        height: 100px;
        object-fit: cover;
        object-position: center;
    }
}

/* Desktop: Hide carousel navigation and show normal grid */
@media (min-width: 769px) {
    .carousel-nav {
        display: none;
    }
    
    .carousel-arrows {
        display: none;
    }
    
    .services-container,
    .pricing-container {
        overflow: visible;
        padding: 0;
    }
    
    .services-grid,
    .pricing-grid {
        display: grid;
        transform: none !important;
    }
}

/* Mobile-specific background optimizations */
@media (max-width: 320px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

