/* ===================================
   CSS Reset & Base Styles
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --rm-primary: #2F8670;
    --rm-primary-2: #1F6E5B;
    --rm-ink: #081317;
    --rm-surface: #0D1B1F;
    --rm-bg: #050B10;
    --rm-text: #EAF2F2;
    --rm-muted: rgba(234, 242, 242, 0.70);
    --rm-border: rgba(234, 242, 242, 0.12);
    --rm-glow: rgba(47, 134, 112, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--rm-bg);
    color: var(--rm-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--rm-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--rm-muted);
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section__subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rm-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.section__title {
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: var(--rm-primary);
    color: white;
}

.btn--primary:hover {
    background: var(--rm-primary-2);
    box-shadow: 0 8px 24px var(--rm-glow);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    border: 2px solid var(--rm-border);
    color: var(--rm-text);
}

.btn--secondary:hover {
    border-color: var(--rm-primary);
    color: var(--rm-primary);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--rm-border);
    color: var(--rm-text);
}

.btn--outline:hover {
    border-color: var(--rm-primary);
    background: rgba(47, 134, 112, 0.1);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn:focus-visible {
    outline: 2px solid var(--rm-primary);
    outline-offset: 4px;
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 11, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rm-border);
    transition: all var(--transition-base);
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rm-text);
}

.nav__logo-mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--rm-muted);
    transition: color var(--transition-base);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rm-primary);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--rm-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    margin-left: 1rem;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--rm-text);
    transition: all var(--transition-base);
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--rm-ink);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__content {
    text-align: center;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--rm-text);
    transition: color var(--transition-base);
}

.mobile-menu__link:hover {
    color: var(--rm-primary);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--rm-ink) 0%, var(--rm-surface) 50%, var(--rm-bg) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 19, 23, 0.95) 0%, rgba(13, 27, 31, 0.85) 100%);
}

.hero__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-md);
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__subtitle {
    font-size: 0.8125rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rm-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.hero__title {
    margin-bottom: var(--spacing-md);
    color: var(--rm-text);
}

.hero__description {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--rm-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero__trust-chips {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-chip {
    padding: 0.5rem 1.25rem;
    background: rgba(47, 134, 112, 0.1);
    border: 1px solid var(--rm-border);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rm-primary);
    transition: all var(--transition-base);
}

.trust-chip:hover {
    background: rgba(47, 134, 112, 0.2);
    border-color: var(--rm-primary);
    transform: translateY(-2px);
}

/* ===================================
   Services Section
   =================================== */

.services {
    background: var(--rm-surface);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--rm-ink);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--rm-border);
    transition: all var(--transition-base);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, var(--rm-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--rm-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--rm-primary);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    transform: rotate(5deg) scale(1.1);
    filter: drop-shadow(0 4px 12px var(--rm-glow));
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rm-text);
}

.service-card__description {
    color: var(--rm-muted);
    line-height: 1.6;
}

/* ===================================
   Work/Portfolio Section
   =================================== */

.work {
    background: var(--rm-bg);
}

.work__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.work-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.work-item:hover {
    transform: scale(1.02);
}

.work-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.work-item:hover .work-item__image {
    transform: scale(1.1);
}

.work-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 19, 23, 0.95), rgba(8, 19, 23, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.work-item:hover .work-item__overlay {
    opacity: 1;
}

.work-item__label {
    color: var(--rm-primary);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===================================
   Modal
   =================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal:not([hidden]) {
    opacity: 1;
    pointer-events: all;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 16, 0.95);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    background: var(--rm-surface);
    border-radius: 1rem;
    border: 1px solid var(--rm-border);
    padding: 2rem;
    z-index: 1;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rm-muted);
    transition: all var(--transition-base);
    border-radius: 0.5rem;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--rm-text);
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 134, 112, 0.2);
    border: 1px solid var(--rm-border);
    border-radius: 50%;
    color: var(--rm-text);
    transition: all var(--transition-base);
    z-index: 2;
}

.modal__nav:hover {
    background: var(--rm-primary);
    border-color: var(--rm-primary);
}

.modal__nav--prev {
    left: -60px;
}

.modal__nav--next {
    right: -60px;
}

.modal__body {
    text-align: center;
}

.modal__image {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.modal__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--rm-text);
}

.modal__description {
    color: var(--rm-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */

.about {
    background: var(--rm-surface);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__video-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.about__video {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.about__content {
    max-width: 600px;
}

.about__text {
    margin-bottom: 1.5rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rm-primary);
    display: inline-block;
}

.stat__plus {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rm-primary);
}

.stat__label {
    display: block;
    font-size: 0.875rem;
    color: var(--rm-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================
   Packages Section
   =================================== */

.packages {
    background: var(--rm-bg);
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.package-card {
    background: var(--rm-surface);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--rm-border);
    transition: all var(--transition-base);
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--rm-primary);
}

.package-card--featured {
    border-color: var(--rm-primary);
    box-shadow: 0 0 40px var(--rm-glow);
}

.package-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--rm-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2rem;
}

.package-card__name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--rm-text);
}

.package-card__description {
    color: var(--rm-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.package-card__features {
    margin-bottom: 2rem;
}

.package-card__features li {
    padding: 0.75rem 0;
    color: var(--rm-muted);
    border-bottom: 1px solid var(--rm-border);
    position: relative;
    padding-left: 1.5rem;
}

.package-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rm-primary);
    font-weight: 700;
}

.package-card__features li:last-child {
    border-bottom: none;
}

.package-card__cta {
    width: 100%;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    background: var(--rm-surface);
}

.testimonials__slider {
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem 2rem;
    text-align: center;
}

.testimonial-card__quote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--rm-text);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonial-card__author {
    margin-top: 2rem;
}

.testimonial-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--rm-text);
    margin-bottom: 0.25rem;
}

.testimonial-card__title {
    font-size: 0.9375rem;
    color: var(--rm-muted);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rm-border);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonials__dot.active {
    background: var(--rm-primary);
    transform: scale(1.2);
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    background: var(--rm-bg);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__info-item svg {
    flex-shrink: 0;
    color: var(--rm-primary);
    margin-top: 0.25rem;
}

.contact__info-label {
    font-size: 0.875rem;
    color: var(--rm-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact__info-value {
    font-size: 1.125rem;
    color: var(--rm-text);
}

.contact__info-link {
    font-size: 1.125rem;
    color: var(--rm-primary);
    transition: color var(--transition-base);
}

.contact__info-link:hover {
    color: var(--rm-primary-2);
}

.contact__map-placeholder {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--rm-surface);
    border-radius: 0.75rem;
    border: 1px solid var(--rm-border);
    text-align: center;
    color: var(--rm-muted);
}

/* Form Styles */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--rm-text);
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 0.875rem 1rem;
    background: var(--rm-surface);
    border: 1px solid var(--rm-border);
    border-radius: 0.5rem;
    color: var(--rm-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--rm-primary);
    box-shadow: 0 0 0 3px var(--rm-glow);
}

.form-input::placeholder {
    color: var(--rm-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: none;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-error.visible {
    display: block;
}

.form-group.error .form-input {
    border-color: #e74c3c;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--rm-ink);
    border-top: 1px solid var(--rm-border);
    padding: 3rem 0 2rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rm-border);
}

.footer__brand {
    font-family: var(--font-heading);
}

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--rm-text);
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--rm-muted);
    letter-spacing: 0.2em;
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rm-border);
    border-radius: 50%;
    color: var(--rm-muted);
    transition: all var(--transition-base);
}

.footer__social:hover {
    border-color: var(--rm-primary);
    color: var(--rm-primary);
    transform: translateY(-2px);
}

.footer__bottom {
    text-align: center;
    color: var(--rm-muted);
    font-size: 0.875rem;
}

/* ===================================
   Toast Notification
   =================================== */

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    background: var(--rm-surface);
    border: 1px solid var(--rm-primary);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px var(--rm-glow);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition-base);
}

.toast:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.toast__content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast__icon {
    color: var(--rm-primary);
    flex-shrink: 0;
}

.toast__message {
    color: var(--rm-text);
    font-size: 0.9375rem;
    margin: 0;
}

/* ===================================
   Reveal Animations
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .nav__links {
        display: none;
    }
    
    .nav__cta {
        display: none;
    }
    
    .nav__hamburger {
        display: flex;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .modal__nav--prev,
    .modal__nav--next {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .work__grid {
        grid-template-columns: 1fr;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav__container {
        padding: 1rem var(--spacing-sm);
    }
    
    .nav__brand {
        font-size: 1rem;
    }
    
    .nav__logo-mark {
        width: 28px;
        height: 28px;
    }
    
    .modal__content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ===================================
   Accessibility - Reduced Motion
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero__grain {
        animation: none;
    }
}

/* ===================================
   Focus Styles for Accessibility
   =================================== */

:focus-visible {
    outline: 2px solid var(--rm-primary);
    outline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--rm-primary);
    outline-offset: 4px;
}
