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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e6bc44;
    color: #fff;
}

.btn-primary:hover {
    background-color: #d4a93a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 188, 68, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #e6bc44;
    border: 2px solid #e6bc44;
}

.btn-secondary:hover {
    background-color: #e6bc44;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border: 2px solid #e6bc44;
}

.btn-outline:hover {
    background-color: #e6bc44;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 188, 68, 0.3);
}

/* For buttons on dark backgrounds */
.custom-cta .btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.custom-cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-placeholder {
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e6bc44;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Urbaan Visuals - Pro Retouch - After.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e6bc44;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Why Choose Us */
.why-choose {
    padding: 2.5rem 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #e6bc44;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Includes Section */
.includes {
    padding: 1.5rem 0;
    background-color: #f8f9fa;
    color: #333;
}

.includes-content h2 {
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.includes-list {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.includes-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.includes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e6bc44;
    font-weight: bold;
}

/* Pricing Toggle Section */
.pricing-toggle-section {
    padding: 3rem 0;
    background-color: #fafafa;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Toggle Switch */
.toggle-container {
    text-align: center;
    margin-bottom: 2.5rem;
}

.toggle-switch {
    display: inline-flex;
    background-color: #e5e7eb;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-option {
    background: none;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    position: relative;
    min-height: 60px;
}

.toggle-option.active {
    background-color: #e6bc44;
    color: #fff;
    box-shadow: 0 2px 8px rgba(230, 188, 68, 0.3);
}

.toggle-option:not(.active) {
    color: #666;
}

.toggle-option:hover:not(.active) {
    background-color: #f3f4f6;
    color: #333;
}

.toggle-text {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.toggle-description {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Packages Content */
.packages-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.packages-content.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.packages-content:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

/* Per Image Price */
.per-image {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #e6bc44;
}

.package-card.featured {
    border-color: #e6bc44;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(230, 188, 68, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e6bc44;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-subtitle {
    color: #e6bc44;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.package-description {
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #e6bc44;
}

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

.package-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e6bc44;
    font-weight: bold;
}

.package-card .btn {
    width: 100%;
}

/* Photography Only Table */
.photo-only {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.pricing-table th {
    background-color: #e6bc44;
    color: #fff;
    font-weight: 600;
}

.pricing-table tr:hover {
    background-color: #f8f9fa;
}

.table-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Per Image Pricing - Minimalist Version */
.per-image-pricing {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.pricing-overview-compact {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-card.base-fee {
    border-left: 4px solid #e6bc44;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.card-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: #e6bc44;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.feature-list li i {
    color: #e6bc44;
    font-size: 0.9rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
}

.option-card.featured {
    border: 2px solid #e6bc44;
}

.option-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: #e6bc44;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.option-header {
    margin-bottom: 1rem;
}

.option-header h4 {
    margin: 0 0 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.price-tag {
    color: #e6bc44;
    font-size: 1.5rem;
    font-weight: 600;
}

.price-tag span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.option-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.quick-calculator {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-calculator h3 {
    margin: 0 0 1.5rem;
    color: #333;
    font-size: 1.3rem;
    text-align: center;
}

.calculator-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
}

.calc-row label {
    color: #666;
    font-weight: 500;
}

.number-input {
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.number-btn {
    background: #f8f9fa;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.number-btn:hover {
    background: #e6bc44;
    color: #fff;
}

.number-input input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 0.5rem;
    font-weight: 500;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #f8f9fa;
    font-weight: 600;
    color: #333;
}

.total-amount {
    color: #e6bc44;
    font-size: 1.5rem;
}

.quick-calculator .btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .calc-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .number-input {
        justify-content: center;
    }
}

/* Calculator Section */
.calculator-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calculator-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calculator-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
}

.calculator-interface {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.image-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selector-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.selector-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selector-item label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.number-input {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.number-btn {
    background: #f8f9fa;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.number-btn:hover {
    background: #e6bc44;
    color: #fff;
}

.number-input input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
}

.number-input input:focus {
    outline: none;
}

.total-display {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.total-final {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-top: 2px solid #e6bc44;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-top: 0.25rem;
}

.calculator-cta {
    text-align: center;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

/* Featured Services */
.featured-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.featured-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #e6bc44;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    flex-shrink: 0;
}

.service-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.service-price {
    color: #e6bc44;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e6bc44;
    font-weight: bold;
}

.featured-service-card .btn {
    width: 100%;
}

/* Other Services */
.other-services {
    margin-top: 3rem;
}

.other-services-title {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.service-card-mini {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card-mini:hover {
    transform: translateY(-3px);
}

.mini-service-icon {
    margin-bottom: 1rem;
}

.service-card-mini h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.mini-price {
    color: #e6bc44;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-card-mini p:last-child {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Extra Services */
.extra-services {
    padding: 4rem 0;
    background-color: #fff;
}

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

.extra-service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e6bc44;
}

.extra-service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.extra-service-card ul {
    list-style: none;
}

.extra-service-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.extra-service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e6bc44;
    font-weight: bold;
}

/* Licensing */
.licensing {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.licensing-toggle {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.licensing-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.toggle-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toggle-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.toggle-icon {
    color: #666;
    transition: transform 0.3s ease;
}

.licensing-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.licensing-content {
    max-width: 800px;
    margin: 1.5rem auto 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.licensing-content.hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.license-info {
    padding: 2rem;
}

.license-section {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.license-section:last-child {
    border-bottom: none;
}

.license-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.license-section h3 i {
    color: #e6bc44;
}

.license-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.license-section li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.license-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e6bc44;
}

.license-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid #e6bc44;
}

.license-section .btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .licensing-toggle {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .toggle-content span {
        font-size: 1rem;
    }
    
    .licensing-content {
        margin: 1rem;
    }
    
    .license-info {
        padding: 1rem;
    }
    
    .license-section {
        padding: 1rem;
    }
}

/* License Summary */
.license-summary {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.summary-content h3 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e6bc44;
}

.summary-label {
    font-weight: 500;
    color: #333;
}

.summary-value {
    font-weight: 600;
    color: #e6bc44;
}

/* Custom Packages */
.custom-packages {
    padding: 4rem 0;
    background: #1e1e1e;
    color: #fff;
}

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

.custom-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.custom-card.featured {
    background: rgba(255, 255, 255, 1);
    border: 3px solid #fff;
    transform: scale(1.02);
}

.custom-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.custom-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.custom-icon {
    margin-bottom: 1.5rem;
}

.custom-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.custom-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.custom-features {
    list-style: none;
    text-align: left;
}

.custom-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-features li:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #e6bc44;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Custom CTA Section */
.custom-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-icon {
    margin-bottom: 1.5rem;
}

.cta-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-option {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-option.featured {
    border-color: #e6bc44;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.cta-option.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-option h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-option p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-option .btn {
    width: 100%;
    margin-top: auto;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 3rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e6bc44;
    box-shadow: 0 0 0 3px rgba(230, 188, 68, 0.1);
}

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

.form-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 200px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Contact Alternative */
.contact-alternative {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.alternative-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.alternative-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e6bc44;
}

.footer-bottom {
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .toggle-switch {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .toggle-option {
        min-width: auto;
        width: 100%;
        padding: 16px 20px;
    }
    
    .pricing-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .selector-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-interface {
        gap: 1rem;
    }
    
    /* Includes responsive styles */
    .includes-list {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
        max-width: 400px;
    }
    
    .includes-list li {
        white-space: normal;
        text-align: left;
    }
    
    .featured-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-service-card {
        padding: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    /* Licensing responsive styles */
    .licensing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .license-card {
        padding: 1.5rem;
    }
    
    .license-header h3 {
        font-size: 1.2rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    /* Custom packages responsive styles */
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .custom-card {
        padding: 1.5rem;
    }
    
    .custom-card.featured {
        transform: none;
    }
    
    .custom-card.featured:hover {
        transform: translateY(-6px);
    }
    
    .custom-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* CTA responsive styles */
    .custom-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-option.featured {
        transform: none;
    }
    
    .cta-option.featured:hover {
        transform: translateY(-4px);
    }
    
    /* Footer responsive styles */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #e6bc44;
    outline-offset: 2px;
} 

.custom-packages .section-title,
.custom-packages .section-subtitle {
    color: #fff;
} 

/* Per Image Pricing - Alternate Service */
.alternate-service {
    background-color: var(--brand-color-light);
    padding: 6rem 0;
    margin: 4rem 0;
    position: relative;
}

.alternate-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-color) 0%, var(--brand-color-light) 100%);
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    position: relative;
    text-align: left;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--brand-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.step h4 {
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

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

.pricing-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.base-fee-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.fee-header {
    margin-bottom: 1.5rem;
}

.fee-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-color);
    margin: 0.5rem 0;
}

.fee-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.fee-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-includes li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fee-includes li::before {
    content: '✓';
    color: var(--brand-color);
    font-weight: bold;
}

.image-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.image-type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    position: relative;
}

.image-type-card.featured {
    border: 2px solid var(--brand-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--brand-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.image-type-header {
    margin-bottom: 1.5rem;
}

.image-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0 0;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

.image-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.image-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.image-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-features li::before {
    content: '•';
    color: var(--brand-color);
    font-weight: bold;
}

.calculator-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-header h3 {
    margin-bottom: 0.5rem;
}

.calculator-interface {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.image-selector {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.selector-item {
    margin-bottom: 1.5rem;
}

.selector-item label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.number-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.number-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.number-btn:hover {
    background: var(--brand-color-light);
}

.number-input input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.total-display {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.total-final {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.calculator-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 2rem 0;
}

.calculator-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .pricing-overview {
        grid-template-columns: 1fr;
    }

    .calculator-interface {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .image-pricing-cards {
        grid-template-columns: 1fr;
    }
} 

.feature-icon, .service-icon, .mini-service-icon, .license-icon, .custom-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(230, 188, 68, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon,
.service-card:hover .service-icon,
.mini-service-card:hover .mini-service-icon,
.license-card:hover .license-icon,
.custom-card:hover .custom-icon {
    transform: scale(1.1);
    background: rgba(230, 188, 68, 0.15);
}

.mini-service-icon {
    width: 60px;
    height: 60px;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e6bc44;
    transition: all 0.3s ease;
}

.cta-option:hover .option-icon {
    transform: scale(1.1);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
} 

/* Form Messages */
.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

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

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

/* Form Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

.form-group input:focus:invalid,
.form-group select:focus:invalid,
.form-group textarea:focus:invalid {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input:focus:valid,
.form-group select:focus:valid,
.form-group textarea:focus:valid {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
} 

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav.nav-open {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .featured-services {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .cta-options {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .custom-cta {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-info {
        align-items: center;
    }

    .package-card {
        margin: 0 1rem;
    }

    .pricing-toggle-section {
        padding: 2rem 1rem;
    }

    .toggle-switch {
        flex-direction: column;
        width: 100%;
    }

    .toggle-option {
        width: 100%;
    }

    .licensing-toggle {
        margin: 0 1rem;
    }

    .licensing-content {
        margin: 1rem;
    }

    .quick-calculator {
        margin: 0 1rem;
    }
}

/* Tablet Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .featured-services {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    .cta-options {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

/* Small Screen Adjustments */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .package-card {
        padding: 1rem;
    }

    .price {
        font-size: 1.8rem;
    }
} 

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle:hover {
        color: #e6bc44;
    }
} 