:root {
    --primary-color: #000000;
    --accent-color: #F2CA2C;
    --bg-color: #FFFFFF;
    --text-color: #000000;
    --dark-bg: #2C2A26;
    --darker-bg: #161513;
    --light-bg: #F9F9F9;
    --border-color: rgba(0, 0, 0, 0.1);

    /* Font Variables */
    --head-fontFamily: 'Staatliches', display;
    --head-fontWeight: 400;
    --head-fontStyle: normal;
    --body-fontFamily: 'Open Sans', sans-serif;
    --body-fontWeight: 400;
    --body-fontStyle: normal;
    --header-logo-fontFamily: 'General Sans', sans-serif;
    --footer-logo-fontFamily: 'General Sans', sans-serif;
    --header-logo-fontWeight: 700;
    --footer-logo-fontWeight: 700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-fontFamily);
    font-weight: var(--body-fontWeight);
    font-style: var(--body-fontStyle);
    color: var(--text-color);
    background-color: var(--darker-bg);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--head-fontFamily);
    font-weight: var(--head-fontWeight);
    font-style: var(--head-fontStyle);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Content Width */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: transparent;
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-family: var(--header-logo-fontFamily);
    font-weight: var(--header-logo-fontWeight);
    text-transform: none;
    letter-spacing: 0;
    color: #FFFFFF;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.button.primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.button.primary:hover {
    background-color: #333;
    border-color: #333;
}

.button.outline {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.button.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.button.small {
    padding: 8px 24px;
    font-size: 0.9rem;
}

.button.accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.button.accent:hover {
    background-color: #e6bc1f;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
    background-color: #000;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-buttons .button {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-buttons .button.primary {
    background-color: #FFFFFF;
    color: #000;
}

.hero-buttons .button.outline:hover {
    background-color: #FFFFFF;
    color: #000;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--dark-bg);
    color: #FFFFFF;
}

.welcome-content h3 {
    font-family: var(--head-fontFamily);
    font-size: 1.8rem;
    font-weight: 400;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--darker-bg);
    color: #FFFFFF;
}

.services-section .section-header h2,
.services-section .badge {
    color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.service-card {
    border-radius: 24px;
    overflow: hidden;
    /* height: 100%; */
}

.card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 1.5rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.card-content {
    text-align: center;
    padding: 1.5rem 0 0 0;
}

.card-content p {
    line-height: 1.6;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

/* Image Break Section */
.image-break-section {
    margin: 0;
    padding: 0;
    background-color: var(--darker-bg);
}

.full-width-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

/* Split Section */
.split-section {
    padding: 5rem 0;
    background-color: var(--darker-bg);
    color: #FFFFFF;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.split-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 32px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: #0a0a0a;
    color: #FFFFFF;
}

.pricing-section .section-header h2 {
    color: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.pricing-card {
    border: 2.5px solid rgba(255, 255, 255, 0.15);
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-card.featured {
    border: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.pricing-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 21px 21px 0 0;
}

.pricing-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 0;
}

.pricing-content h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    line-height: 1.2;
}

.price-unit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    display: block;
}

.popular-tag {
    background-color: #FFFFFF;
    color: #000000;
    padding: 6px 16px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
    text-transform: capitalize;
    width: fit-content;
}

.pricing-content .button {
    margin: 1rem 0 1.25rem 0;
    width: 100%;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    font-weight: 600;
    padding: 13px 24px;
}

.pricing-content .button:hover {
    background-color: #f0f0f0;
}

.description {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.feature-list li::before {
    content: '\2713';
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--darker-bg);
    color: #FFFFFF;
}

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);

}

.contact-form-wrapper {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

input,
textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    font-family: inherit;
    font-size: 1rem;
    color: #FFFFFF;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1rem;
}

.recaptcha-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 250px;
    text-align: right;
}

.recaptcha-text a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
}

.recaptcha-text a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: 4rem 0;
    background-color: var(--darker-bg);
    color: #FFFFFF;
    border-top: none;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/footer-bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: var(--footer-logo-fontWeight);
    font-family: var(--footer-logo-fontFamily);
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.footer-info a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .split-container {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
        padding: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .welcome-section {
        padding: 4rem 0;
    }

    .welcome-content h3 {
        font-size: 1.125rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Animation Utilities */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Toast Notification Styles */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 250px;
    padding: 16px 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-left: 4px solid #333;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left-color: #4CAF50;
    background-color: #f6fff6;
    color: #2e7d32;
}

.toast.error {
    border-left-color: #f44336;
    background-color: #fff6f6;
    color: #c62828;
}

.toast .close-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.6;
}

.toast .close-btn:hover {
    opacity: 1;
}

/* Honeypot Field (Hidden) */
.hidden-field {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

/* Loading Spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #000;
    /* Match text color */
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}